Click or drag to resize

CPGUCorrelationMatrix Method

Find the correlations between columns in a matrix

Namespace:  Geosoft.Desktop.GXNet
Assembly:  geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntax
public static void CorrelationMatrix(
	CPG pg_u,
	CPG pg_o
)

public static void CorrelationMatrix(
	CPG pg_u,
	CPG pg_o
)

Parameters

pg_u
Type: GeoEngine.Core.GXNetCPG
Input matrix
pg_o
Type: GeoEngine.Core.GXNetCPG
Returned correlation matrix
Remarks
The input matrix is M rows by N columns. The returned matrix is a symmetric N by N matrix whose elements are the normalized dot products of the columns of the input matrix with themselves. The elements take on values from 0 (orthogonal) to 1 (parallel).
See Also