Copies the elements of this matrix
to another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> CopyTo(
Matrix<T> destination
)
Public Function CopyTo (
destination As Matrix(Of T)
) As Matrix(Of T)
public:
Matrix<T>^ CopyTo(
Matrix<T>^ destination
)
member CopyTo :
destination : Matrix<'T> -> Matrix<'T>
Parameters
- destination
- Type: Extreme.MathematicsMatrixT
The matrix that is the destination
of the elements copied from the matrix.
Return Value
Type:
MatrixTA reference to
destination.
Exception | Condition |
---|
DimensionMismatchException | The
number of rows of destination is less than
the number of rows of this instance.
-or- The number of columns of destination is less than
the number of columns of this instance. |
Reference