  | NMathFunctionsRepMat(DoubleVector, Int32, Int32) Method | 
            Treats the vector as a row vector and repeats it m x n times.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleMatrix RepMat(
	DoubleVector v,
	int m,
	int n
)
Public Shared Function RepMat ( 
	v As DoubleVector,
	m As Integer,
	n As Integer
) As DoubleMatrix
public:
static DoubleMatrix^ RepMat(
	DoubleVector^ v, 
	int m, 
	int n
)
static member RepMat : 
        v : DoubleVector * 
        m : int * 
        n : int -> DoubleMatrix Parameters
- v  DoubleVector
 - A vector.
 - m  Int32
 - Number of row multiples.
 - n  Int32
 - Number of column multiples.
 
Return Value
DoubleMatrixA new matrix with the repeated data.
Exceptions
See Also