Gets the specified principal component.

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

Syntax

C#
public DoubleVector this[
	int index
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	index As Integer _
) As DoubleVector
Visual C++
public:
property DoubleVector^ default[int index] {
	DoubleVector^ 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