Constant Vector<T>.Is Element Writable Method
Gets a value indicating whether the value of the component at
the specified index can be changed.
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Always returns false.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public override bool IsElementWritable(
int index
)
Parameters
- index Int32
- Zero-based index of the component.
Return Value
BooleanAlways returns false.
Remarks
The components of a ConstantVector<T> cannot
be modified. Any attempt to do so will result in
an exception of type ComponentReadOnlyException.