Gets the specified principal component.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public FloatVector this[
	int index
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	index As Integer _
) As FloatVector
Visual C++
public:
property FloatVector^ default[int index] {
	FloatVector^ get (int index);
}

Parameters

index
Type: System..::.Int32
The (zero-based) index of the principal component to return.

Return Value

The specified principal component.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if index is less than zero or greater than or equal to NumberOfVariables.

See Also