Class LaguerreSolver.ComplexSolver

java.lang.Object
org.apache.commons.math3.analysis.solvers.LaguerreSolver.ComplexSolver
Enclosing class:
LaguerreSolver

private class LaguerreSolver.ComplexSolver extends Object
Class for searching all (complex) roots.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    isRoot(double min, double max, Complex z)
    Check whether the given complex root is actually a real zero in the given interval, within the solver tolerance level.
    solve(Complex[] coefficients, Complex initial)
    Find a complex root for the polynomial with the given coefficients, starting from the given initial value.
    solveAll(Complex[] coefficients, Complex initial)
    Find all complex roots for the polynomial with the given coefficients, starting from the given initial value.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ComplexSolver

      private ComplexSolver()
  • Method Details