Constructs a FloatPCA instance from the given data.

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

Syntax

C#
public FloatPCA(
	FloatMatrix data
)
Visual Basic (Declaration)
Public Sub New ( _
	data As FloatMatrix _
)
Visual C++
public:
FloatPCA(
	FloatMatrix^ data
)

Parameters

data
Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix containing the data. Each column represents a variable; each row an observation.

Remarks

By default, variables are centered but not scaled before analysis takes place.

See Also