Makes a shallow copy of this matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> ShallowCopy()
Public Function ShallowCopy As Matrix(Of T)
public:
Matrix<T>^ ShallowCopy()
member ShallowCopy : unit -> Matrix<'T>
Return Value
Type:
MatrixTA reference to the new
MatrixT.
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.
Reference