ConstantVector<T>.IsElementWritable Method

Gets whether the value of the element at the specified index can be changed.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public override bool IsElementWritable(
	int index
)

Parameters

index  Int32
Zero-based index of the component.

Return Value

Boolean
Always 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.

See Also