ArrayMutability Enumeration

Enumerates the levels of mutability of a vector or matrix.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
[FlagsAttribute]
public enum ArrayMutability

Members

Immutable65,536 All elements of the array are read-only.
MutableValues196,608 The structure, size and shape of the array are fixed, but values are writable.
MutableStructure458,752 The size and shape of the array are fixed, but non-zero structure and values are writable.
MutableSize983,040 The size of the array, as well as its non-zero structure and values are writable.

See Also