|  | CPGUCorrelationMatrix Method  | 
 Find the correlations between columns in a matrix
 
    Namespace: 
   Geosoft.Desktop.GXNet
    Assembly:
   geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2025.1.0.25
 Syntax
Syntaxpublic static void CorrelationMatrix(
	CPG pg_u,
	CPG pg_o
)
public static void CorrelationMatrix(
	CPG pg_u,
	CPG pg_o
)
Public Shared Sub CorrelationMatrix ( 
	pg_u As CPG,
	pg_o As CPG
)
Public Shared Sub CorrelationMatrix ( 
	pg_u As CPG,
	pg_o As CPG
)
public:
static void CorrelationMatrix(
	CPG^ pg_u, 
	CPG^ pg_o
)
public:
static void CorrelationMatrix(
	CPG^ pg_u, 
	CPG^ pg_o
)
static member CorrelationMatrix : 
        pg_u : CPG * 
        pg_o : CPG -> unit 
static member CorrelationMatrix : 
        pg_u : CPG * 
        pg_o : CPG -> unit 
Parameters
- pg_u
- Type: GeoEngine.Core.GXNetCPG
 Input matrix
- pg_o
- Type: GeoEngine.Core.GXNetCPG
 Returned correlation matrix
 Remarks
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
See Also