Click or drag to resize
CPGUPCLoadings Method
Compute the principal component loadings from the standardized data.

Available since Oasis montaj version: 5.0.0
License: Available to anyone with an Oasis Montaj license.  

Namespace: Geosoft.Desktop.GXNet
Assembly: geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll)
Notes
Works on columns of the PG. Calculates the correlation matrix from the columns of the standardized data, then computes the eigen values and eigenvectors of the correlation matrix. The loadings are the eigenvectors, ordered by descending eigenvalues, scaled by the square root of the eigenvalues. The returned pager must be sized the same as the input pager. Correlations are performed using "PGU_CORR_SIMPLE", so if you want Pearson correlations, or wish to use a modified correlation matrix, use PCLoadings2_PGU and input the correlation matrix directly.
Syntax
public static void PCLoadings(
	CPG oPG1,
	CPG oPG2
)

Parameters

oPG1
Type: GeoEngine.Core.GXNetCPG
standardized data matrix (M by N)
oPG2
Type: GeoEngine.Core.GXNetCPG
principal component loadings (N by N)
See Also