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: 10.7.0
C#
public enum CloningMethod

Members

Exact0 Makes an exact clone of the object, including its values, metadata, structural representation, and mutability state.
NonzeroElementsWritable1 Makes an independent clone whose stored or structurally represented components are writable while preserving the object's structural representation.
AllElementsWritable2 Makes an independent clone such that all logical components are writable. This may require a different structural representation.
ShapeOnly3 Makes a copy of the shape and structure of the object but does not copy the values.

See Also