Package org.hipparchus.linear
Interface FieldMatrixDecomposer<T extends FieldElement<T>>
- Type Parameters:
T
- the type of the field elements
- All Known Implementing Classes:
FieldLUDecomposer
,FieldQRDecomposer
public interface FieldMatrixDecomposer<T extends FieldElement<T>>
Interface for all algorithms providing matrix decomposition.
- Since:
- 2.2
-
Method Summary
Modifier and TypeMethodDescriptiondecompose
(FieldMatrix<T> a) Get a solver for finding the A × X = B solution in least square sense.
-
Method Details
-
decompose
Get a solver for finding the A × X = B solution in least square sense.- Parameters:
a
- coefficient matrix A to decompose- Returns:
- a solver
- Throws:
MathIllegalArgumentException
- if decomposition fails
-