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.3179.0 (4.8.3179.0)
Syntax
C#
public interface IIterativeSolver<T>
where T : struct, new(), IEquatable<T>, IFormattable

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Altaxo.Calc.LinearAlgebra.Solvers.IIterativeSolver`1"]

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