Click or drag to resize

ArnoldiEigenvalueSolverSolve(DoubleSymCsrSparseMatrix, DoubleSymCsrSparseMatrix, ArnoldiEigenvalueOptions) Method

Solve the generalized symmetric eigenvalue problem Ax = Mx(lambda) using Arnoldi iteration, Where A is symmetric and M is symmetric positive semi-definite.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static ArnoldiEigenvalueSolution Solve(
	DoubleSymCsrSparseMatrix A,
	DoubleSymCsrSparseMatrix M,
	ArnoldiEigenvalueOptions options
)

Parameters

A  DoubleSymCsrSparseMatrix
Sparse symmetric matrix.
M  DoubleSymCsrSparseMatrix
Sparse symmetric positive semi-definite matrix.
options  ArnoldiEigenvalueOptions
The number of eigenvalues to find.

Return Value

ArnoldiEigenvalueSolution
Result enumeration.
See Also