Example usage for Java org.apache.commons.math3.linear ConjugateGradient fields, constructors, methods, implement or subclass
The text is from its open source code.
| ConjugateGradient(final int maxIterations, final double delta, final boolean check) Creates a new instance of this class, with default stopping criterion. | |
| ConjugateGradient(final IterationManager manager, final double delta, final boolean check) Creates a new instance of this class, with default stopping criterion and custom iteration manager. |
| RealVector | solve(final RealLinearOperator a, final RealVector b, final RealVector x0) |
| RealVector | solve(final RealLinearOperator a, final RealVector b) |