Matrix<T>.Clone Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Clone() Constructs a deep copy of this matrix.
Clone(CloningMethod) Makes a copy of this vector using the specified method.

Clone

Constructs a deep copy of this matrix.
C#
public Matrix<T> Clone()

Return Value

Matrix<T>
The cloned Matrix<T>.

Clone(CloningMethod)

Makes a copy of this vector using the specified method.
C#
public virtual Matrix<T> Clone(
	CloningMethod method
)

Parameters

method  CloningMethod
A CloningMethod value that specifies how the matrix should be cloned.

Return Value

Matrix<T>
The cloned Vector<T>.

See Also