C# 클래스 YAMP.Numerics.GMRESkSolver

Basic class for a GMRES(k) (with restarts) solver.
상속: IterativeSolver
파일 보기 프로젝트 열기: FlorianRappl/YAMP 1 사용 예제들

공개 메소드들

메소드 설명
GMRESkSolver ( MatrixValue A ) : System

Creates the class for a GMRES(k) solver.

GMRESkSolver ( MatrixValue A, bool restart ) : System

Creates the class for a GMRES(k) solver.

Solve ( MatrixValue b ) : MatrixValue

Solves the system of linear equations.

비공개 메소드들

메소드 설명
Rotate ( int j ) : void

메소드 상세

GMRESkSolver() 공개 메소드

Creates the class for a GMRES(k) solver.
public GMRESkSolver ( MatrixValue A ) : System
A MatrixValue The matrix A to solve.
리턴 System

GMRESkSolver() 공개 메소드

Creates the class for a GMRES(k) solver.
public GMRESkSolver ( MatrixValue A, bool restart ) : System
A MatrixValue The matrix A to consider as system of linear equations.
restart bool Should restarts be executed?
리턴 System

Solve() 공개 메소드

Solves the system of linear equations.
public Solve ( MatrixValue b ) : MatrixValue
b MatrixValue The vector b in A * x = b.
리턴 MatrixValue