Gets the vector component at the specified position.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public MustOverride Function GetValue ( _
	index As Integer _
) As Double
C#
public abstract double GetValue (
	int index
)
C++
public:
virtual double GetValue (
	int index
) abstract

Parameters

index (System.Int32)
The zero-based index of the component.

Return Value

The component of the Vector in the indexth position.

Remarks

This method does not perform bounds checking. It is provided for optimized access in situations where the argument is known to be within bounds. If the argument is outside its valid range, the result is unspecified.