IIterativeSolverT Interface |
Defines the interface for IIterativeSolverT classes that solve the matrix equation Ax = b in
an iterative manner.
Namespace: Altaxo.Calc.LinearAlgebra.SolversAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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| | Name | Description |
|---|
 | Solve |
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