Enumerates the methods that can be used to clone a
VectorT or
MatrixT.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum CloningMethod
Public Enumeration CloningMethod
public enum class CloningMethod
| Member name | Value | Description |
---|
| 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.
|
| AllElementsWritable | 2 |
Makes a copy of the object such that all components are writable.
|
| ShapeOnly | 3 |
Makes a copy of the shape and structure of the object but does not copy the values.
|
| NonzeroComponentsWritable | 1 | Obsolete.
Makes a copy of the object such that all non-zero components are writable.
|
| AllComponentsWritable | 2 | Obsolete.
Makes a copy of the object such that all components are writable.
|
Reference