Matrix<T>.ShallowCopy Method

Makes a shallow copy of this matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> ShallowCopy()

Return Value

Matrix<T>
A reference to the new Matrix<T>.

Remarks

A shallow copy does not copy the elements of the matrix into a new array. Use the Clone() method for this purpose.

For derived classes, the return value may need to be cast to the derived type.

See Also