CloningMethod Enumeration

Enumerates the methods that can be used to clone a Vector<T> or Matrix<T>.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public enum CloningMethod

Members

Exact0 Makes an exact clone of the object.
NonzeroElementsWritable1 Makes a copy of the object such that all non-zero components are writable.
AllElementsWritable2 Makes a copy of the object such that all components are writable.
ShapeOnly3 Makes a copy of the shape and structure of the object but does not copy the values.

See Also