Click or drag to resize

VectorTItem Property

Gets or sets the value at the given index.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public T this[
	int index
] { get; set; }

Parameters

index  Int32
The index of the value to get or set.

Return Value

T
The value of the vector at the given index.

Implements

IListTItemInt32
IReadOnlyListTItemInt32
IVectorTItemInt32
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionIf index is negative or greater than the size of the vector.
See Also