V: Array;
The V property returns principal component values.
Array size: m x n, where m - number of principal components, n - length of the principal components. Use the ISmSingularSpectrumAnalysis.PCCount property to get the number of principal components.
If additional principal components are used for analysis, columns containing values of total and intraclass averages are added to the array. If the value of ISmSingularSpectrumAnalysis.MatrixAlignmentType equals to:
AlignmentType.NoAlignment, additional principal components are not used.
AlignmentType.SingleAlignment, the total average is used as the additional principal component. Use the first column in the array to get this value: V[0, i];
AlignmentType.DoubleAlignment, total and intraclass averages are used as additional principal components. Use the first column in the array to get value of the total average: V[0, i]. Use the second column in the array to get value of the between-group average: V[1, i].
The property use is given in the example for ISmSingularSpectrumAnalysis.Fitted.
See also: