Class BackSolver<T extends MatrixMixin<T,?,?,?,?,?,U,?>,U extends VectorMixin<U,?,?,?,?,T,?,?>,V>

java.lang.Object
org.flag4j.linalg.solvers.exact.triangular.BackSolver<T,U,V>
Type Parameters:
T - Type of matrix to decompose.
U - Vector type equivalent of matrix.
V - Type of internal storage for the matrix and vector.
All Implemented Interfaces:
LinearSolver<T,U>
Direct Known Subclasses:
ComplexBackSolver, RealBackSolver

public abstract class BackSolver<T extends MatrixMixin<T,?,?,?,?,?,U,?>,U extends VectorMixin<U,?,?,?,?,T,?,?>,V> extends Object implements LinearSolver<T,U>
Base class for solvers which solve a linear system of equations U*x=b or U*X=B where U is an upper triangular matrix. This is solved in an exact sense.