PrincipalComponentCollectionItem Property |
Gets the principal component with the given index.
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public PrincipalComponent this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As PrincipalComponent
Get
public:
virtual property PrincipalComponent^ default[int index] {
PrincipalComponent^ get (int index) sealed;
}
abstract Item : PrincipalComponent with get
override Item : PrincipalComponent with get
Parameters
- index
- Type: SystemInt32
The (zero-based) index.
Return Value
Type:
PrincipalComponentThe principal component with the given index.
Implements
IReadOnlyListTItemInt32Remarks Principal components are ordered from most to least significant.
The most principal component, i.e. the component which explains the most variance, has index zero.
The least principal component has the highest index.
See Also