  | NMathFunctionsRepMat(DoubleMatrix, DoubleMatrix) Method | 
            Repeats the matrix, A, and places it in B.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static void RepMat(
	DoubleMatrix A,
	DoubleMatrix B
)
Public Shared Sub RepMat ( 
	A As DoubleMatrix,
	B As DoubleMatrix
)
public:
static void RepMat(
	DoubleMatrix^ A, 
	DoubleMatrix^ B
)
static member RepMat : 
        A : DoubleMatrix * 
        B : DoubleMatrix -> unit Parameters
- A  DoubleMatrix
 - Original matrix.
 - B  DoubleMatrix
 - Destination matrix.
 
Return Value
A new matrix with the repeated data.
Exceptions
See Also