Repeats the matrix, A, and places it in B.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void RepMat( DoubleMatrix A, DoubleMatrix B ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub RepMat ( _ A As DoubleMatrix, _ B As DoubleMatrix _ ) |
| Visual C++ |
|---|
public: static void RepMat( DoubleMatrix^ A, DoubleMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
Original matrix.
- B
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
Destination matrix.
Return Value
A new matrix with the repeated data.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown when B's size is not a multiple of A's. |