Click or drag to resize

DoubleFactorAnalysisExtraction, Rotation(DoubleSymmetricMatrix) Constructor

Constructs a
C#
DoubleFactorAnalysis
object from the given matrix data. Factors are extracted from the matrix of varaible relations (correlation or covariance) and then rotated to maximize the relationship between the variables and some of the factors. Factor extraction will be performed by an instance of the
C#
Extraction
class type parameter constructed with no arguments, and factor rotation will be performed by an instance of the
C#
Rotation
class type parameter constructed with no arguments. Variance estimates will be unbiased.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleFactorAnalysis(
	DoubleSymmetricMatrix matrixData
)

Parameters

matrixData  DoubleSymmetricMatrix
Data to analyze. Should be either the correlation or covariance matrix.
See Also