Click or drag to resize

IIterativeSolverT Interface

Defines the interface for IIterativeSolverT classes that solve the matrix equation Ax = b in an iterative manner.

Namespace: Altaxo.Calc.LinearAlgebra.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public interface IIterativeSolver<T>
where T : struct, new(), IEquatable<T>, IFormattable

Type Parameters

T
The numeric element type.

The IIterativeSolverT type exposes the following members.

Methods
 NameDescription
Public methodSolve Solves the matrix equation Ax = b, where A is the coefficient matrix, b is the solution vector and x is the unknown vector.
Top
See Also