Java org.apache.commons.math3.linear DecompositionSolver fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.linear DecompositionSolver fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.linear DecompositionSolver.

The text is from its open source code.

Method

RealMatrixgetInverse()
Get the inverse (or pseudo-inverse) of the decomposed matrix.
booleanisNonSingular()
Check if the decomposed matrix is non-singular.
RealVectorsolve(final RealVector b)
Solve the linear equation A × X = B for matrices A.
RealMatrixsolve(final RealMatrix b)
Solve the linear equation A × X = B for matrices A.