Copies a matrix WITH COMPACT STRIDE to the indicated matrix.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void FastMatrixCopy( DoubleMatrix Src, DoubleMatrix Dest ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub FastMatrixCopy ( _ Src As DoubleMatrix, _ Dest As DoubleMatrix _ ) |
| Visual C++ |
|---|
public: static void FastMatrixCopy( DoubleMatrix^ Src, DoubleMatrix^ Dest ) |
Parameters
- Src
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
The matrix to copy.
- Dest
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
The matrix to copy to. Must be the same size as the source matrix.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if the source and destination matrices are not the same size. |