Cloning Method Enumeration
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum CloningMethod
Members
Exact | 0 | Makes an exact clone of the object. |
NonzeroElementsWritable | 1 | Makes a copy of the object such that all non-zero components are writable. |
NonzeroComponentsWritable | 1 |
Makes a copy of the object such that all non-zero components are writable.
Obsolete. |
AllElementsWritable | 2 | Makes a copy of the object such that all components are writable. |
AllComponentsWritable | 2 |
Makes a copy of the object such that all components are writable.
Obsolete. |
ShapeOnly | 3 | Makes a copy of the shape and structure of the object but does not copy the values. |