Copies a matrix WITH COMPACT STRIDE to the indicated matrix.

Namespace:  CenterSpace.NMath.Core
Assembly:  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

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the source and destination matrices are not the same size.

See Also