Makes a shallow copy of this Matrix.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function ShallowCopy As Matrix |
| C# |
|---|
public Matrix ShallowCopy () |
| C++ |
|---|
public: Matrix^ ShallowCopy () |
Return Value
A reference to the new Matrix.
Remarks
A shallow copy does not copy the components
of the vector 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.