CloningMethod Enumeration

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

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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.
NonzeroComponentsWritable1 Makes a copy of the object such that all non-zero components are writable.
Obsolete.
AllElementsWritable2 Makes a copy of the object such that all components are writable.
AllComponentsWritable2 Makes a copy of the object such that all components are writable.
Obsolete.
ShapeOnly3 Makes a copy of the shape and structure of the object but does not copy the values.

See Also