Click or drag to resize

DoubleFactorAnalysisExtraction, Rotation(DoubleSymmetricMatrix, BiasType) 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.

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

Parameters

matrixData  DoubleSymmetricMatrix
Data to analyze. Should be either the correlation or covariance matrix.
bias  BiasType
Specifies whether a biased or unbiased estimate of variances is to be used.
See Also