  | NMathFunctionsRepMat(DoubleMatrix, Int32, Int32, DoubleMatrix) Method | 
            Repeats the source matrix m x n times in the destination matrix
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static void RepMat(
	DoubleMatrix Src,
	int m,
	int n,
	DoubleMatrix Dest
)
Public Shared Sub RepMat ( 
	Src As DoubleMatrix,
	m As Integer,
	n As Integer,
	Dest As DoubleMatrix
)
public:
static void RepMat(
	DoubleMatrix^ Src, 
	int m, 
	int n, 
	DoubleMatrix^ Dest
)
static member RepMat : 
        Src : DoubleMatrix * 
        m : int * 
        n : int * 
        Dest : DoubleMatrix -> unit Parameters
- Src  DoubleMatrix
 - The source matrix.
 - m  Int32
 - Number of row multiples.
 - n  Int32
 - Number of column multiples.
 - Dest  DoubleMatrix
 - The destination matrix.
 
Return Value
A new matrix with the repeated data.
Exceptions
See Also