Click or drag to resize

NMathFunctionsRepMat(DoubleMatrix, Int32, Int32) Method

Repeats the matrix m x n times.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleMatrix RepMat(
	DoubleMatrix A,
	int m,
	int n
)

Parameters

A  DoubleMatrix
A matrix.
m  Int32
Number of row multiples.
n  Int32
Number of column multiples.

Return Value

DoubleMatrix
A new matrix with the repeated data.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown when m or n is negative.
See Also