Click or drag to resize

DoubleFactorAnalysisExtraction, Rotation(DoubleSymmetricMatrix, Extraction) 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 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,
	Extraction factorExtraction
)

Parameters

matrixData  DoubleSymmetricMatrix
Data to analyze. Should be either the correlation or covariance matrix.
factorExtraction  Extraction
Object to be used for factor extraction.
See Also