 | CPGUJacobi Method |
Find eigenvalues, eigenvectors of a real symmetric matrix.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void Jacobi(
CPG pg_i,
CVV vv_d,
CPG pg_eigen
)
public static void Jacobi(
CPG pg_i,
CVV vv_d,
CPG pg_eigen
)
Public Shared Sub Jacobi (
pg_i As CPG,
vv_d As CVV,
pg_eigen As CPG
)
Public Shared Sub Jacobi (
pg_i As CPG,
vv_d As CVV,
pg_eigen As CPG
)
public:
static void Jacobi(
CPG^ pg_i,
CVV^ vv_d,
CPG^ pg_eigen
)
public:
static void Jacobi(
CPG^ pg_i,
CVV^ vv_d,
CPG^ pg_eigen
)
static member Jacobi :
pg_i : CPG *
vv_d : CVV *
pg_eigen : CPG -> unit
static member Jacobi :
pg_i : CPG *
vv_d : CVV *
pg_eigen : CPG -> unit
Parameters
- pg_i
- Type: GeoEngine.Core.GXNetCPG
Input Pager - vv_d
- Type: GeoEngine.Core.GXNetCVV
Eigenvalues (returned) - pg_eigen
- Type: GeoEngine.Core.GXNetCPG
Eigenvectors (returned)
Remarks
The number of rows must equal the number of columns.
Eienvalues, vectors are sorted in descending order.
See Also