Uses of Class
org.hipparchus.exception.MathIllegalStateException
- 
Packages that use MathIllegalStateException Package Description org.hipparchus.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions.org.hipparchus.analysis.solvers Root finding algorithms, for univariate real functions.org.hipparchus.clustering Clustering algorithms.org.hipparchus.complex Complex number type and implementations of complex transcendental functions.org.hipparchus.fraction Fraction number type and fraction number formatting.org.hipparchus.geometry This package is the top level package for geometry.org.hipparchus.geometry.euclidean.oned This package provides basic 1D geometry components.org.hipparchus.geometry.euclidean.threed This package provides basic 3D geometry components.org.hipparchus.geometry.euclidean.twod This package provides basic 2D geometry components.org.hipparchus.geometry.euclidean.twod.hull This package provides algorithms to generate the convex hull for a set of points in an two-dimensional euclidean space.org.hipparchus.geometry.hull This package provides interfaces and classes related to the convex hull problem.org.hipparchus.geometry.spherical.twod This package provides basic geometry components on the 2-sphere.org.hipparchus.linear Linear algebra support.org.hipparchus.migration.exception This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.migration.geometry.euclidean This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.migration.ode This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.migration.ode.sampling This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.migration.optim.linear This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Eventsorg.hipparchus.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems.org.hipparchus.ode.sampling This package provides classes to handle sampling steps during Ordinary Differential Equations integration.org.hipparchus.optim Generally, optimizers are algorithms that will eitherminimizeormaximizea scalar function, called theobjective function.org.hipparchus.optim.linear Optimization algorithms for linear constrained problems.org.hipparchus.optim.nonlinear.scalar Algorithms for optimizing a scalar function.org.hipparchus.optim.nonlinear.scalar.gradient This package provides optimization algorithms that require derivatives.org.hipparchus.optim.nonlinear.scalar.noderiv This package provides optimization algorithms that do not require derivatives.org.hipparchus.optim.univariate One-dimensional optimization algorithms.org.hipparchus.random Random number and random data generators.org.hipparchus.special Implementations of special functions such as Beta and Gamma.org.hipparchus.stat.descriptive Generic univariate and multivariate summary statistic objects.org.hipparchus.stat.fitting Statistical methods for fitting distributions.org.hipparchus.stat.inference Classes providing hypothesis testing.org.hipparchus.util Convenience routines and common data structures used throughout the Hipparchus library. - 
- 
Uses of MathIllegalStateException in org.hipparchus.analysis.integration
Methods in org.hipparchus.analysis.integration that throw MathIllegalStateException Modifier and Type Method Description protected doubleBaseAbstractUnivariateIntegrator. computeObjectiveValue(double point)Compute the objective function value.protected abstract doubleBaseAbstractUnivariateIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleIterativeLegendreGaussIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleMidPointIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleRombergIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleSimpsonIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleTrapezoidIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.doubleBaseAbstractUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double lower, double upper)Integrate the function in the given interval.doubleUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double min, double max)Integrate the function in the given interval. - 
Uses of MathIllegalStateException in org.hipparchus.analysis.solvers
Methods in org.hipparchus.analysis.solvers that throw MathIllegalStateException Modifier and Type Method Description protected doubleBaseAbstractUnivariateSolver. computeObjectiveValue(double point)Compute the objective function value.protected DerivativeStructureAbstractUnivariateDifferentiableSolver. computeObjectiveValueAndDerivative(double point)Compute the objective function value.protected abstract doubleBaseAbstractUnivariateSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBaseSecantSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBisectionSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBrentSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.doubleLaguerreSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleMullerSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleMullerSolver2. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleNewtonRaphsonSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleRiddersSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleSecantSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected BracketedUnivariateSolver.IntervalBaseSecantSolver. doSolveInterval()Find a root and return the containing interval.protected voidBaseAbstractUnivariateSolver. incrementEvaluationCount()Increment the evaluation count by one.doubleBaseAbstractUnivariateSolver. solve(int maxEval, F f, double startValue)Solve for a zero in the vicinity ofstartValue.doubleBaseAbstractUnivariateSolver. solve(int maxEval, F f, double min, double max, double startValue)Solve for a zero in the given interval, start atstartValue.doubleBaseUnivariateSolver. solve(int maxEval, F f, double min, double max)Solve for a zero root in the given interval.doubleBaseUnivariateSolver. solve(int maxEval, F f, double min, double max, double startValue)Solve for a zero in the given interval, start atstartValue.doubleBracketingNthOrderBrentSolver. solve(int maxEval, UnivariateFunction f, double min, double max, double startValue, AllowedSolution allowedSolution)Solve for a zero in the given interval, start atstartValue.doubleBracketingNthOrderBrentSolver. solve(int maxEval, UnivariateFunction f, double min, double max, AllowedSolution allowedSolution)Solve for a zero in the given interval.doubleNewtonRaphsonSolver. solve(int maxEval, UnivariateDifferentiableFunction f, double min, double max)Find a zero near the midpoint ofminandmax.Complex[]LaguerreSolver. solveAllComplex(double[] coefficients, double initial)Find all complex roots for the polynomial with the given coefficients, starting from the given initial value.ComplexLaguerreSolver. solveComplex(double[] coefficients, double initial)Find a complex root for the polynomial with the given coefficients, starting from the given initial value.BracketedUnivariateSolver.IntervalBaseSecantSolver. solveInterval(int maxEval, UnivariateFunction f, double min, double max, double startValue)Solve for a zero in the given interval and return a tolerance interval surrounding the root.default BracketedRealFieldUnivariateSolver.Interval<T>BracketedRealFieldUnivariateSolver. solveInterval(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max)Solve for a zero in the given interval and return a tolerance interval surrounding the root.BracketedRealFieldUnivariateSolver.Interval<T>BracketedRealFieldUnivariateSolver. solveInterval(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, T startValue)Solve for a zero in the given interval and return a tolerance interval surrounding the root.default BracketedUnivariateSolver.IntervalBracketedUnivariateSolver. solveInterval(int maxEval, F f, double min, double max)Solve for a zero in the given interval and return a tolerance interval surrounding the root.BracketedUnivariateSolver.IntervalBracketedUnivariateSolver. solveInterval(int maxEval, F f, double min, double max, double startValue)Solve for a zero in the given interval and return a tolerance interval surrounding the root.BracketedUnivariateSolver.IntervalBracketingNthOrderBrentSolver. solveInterval(int maxEval, UnivariateFunction f, double min, double max, double startValue)Solve for a zero in the given interval and return a tolerance interval surrounding the root.BracketedRealFieldUnivariateSolver.Interval<T>FieldBracketingNthOrderBrentSolver. solveInterval(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, T startValue)Solve for a zero in the given interval and return a tolerance interval surrounding the root. - 
Uses of MathIllegalStateException in org.hipparchus.clustering
Methods in org.hipparchus.clustering that throw MathIllegalStateException Modifier and Type Method Description abstract List<? extends Cluster<T>>Clusterer. cluster(Collection<T> points)Perform a cluster analysis on the given set ofClusterableinstances.List<CentroidCluster<T>>KMeansPlusPlusClusterer. cluster(Collection<T> points)Runs the K-means++ clustering algorithm.List<CentroidCluster<T>>MultiKMeansPlusPlusClusterer. cluster(Collection<T> points)Runs the K-means++ clustering algorithm. - 
Uses of MathIllegalStateException in org.hipparchus.complex
Methods in org.hipparchus.complex that throw MathIllegalStateException Modifier and Type Method Description doubleRootsOfUnity. getImaginary(int k)Get the imaginary part of thek-thn-th root of unity.doubleRootsOfUnity. getReal(int k)Get the real part of thek-thn-th root of unity.booleanRootsOfUnity. isCounterClockWise()ComplexComplexFormat. parse(String source)Parses a string to produce aComplexobject. - 
Uses of MathIllegalStateException in org.hipparchus.fraction
Methods in org.hipparchus.fraction that throw MathIllegalStateException Modifier and Type Method Description StringBufferFractionFormat. format(Object obj, StringBuffer toAppendTo, FieldPosition pos)Formats an object and appends the result to a StringBuffer.BigFractionBigFractionFormat. parse(String source)Parses a string to produce aBigFractionobject.FractionFractionFormat. parse(String source)Parses a string to produce aFractionobject.Constructors in org.hipparchus.fraction that throw MathIllegalStateException Constructor Description BigFraction(double value, double epsilon, int maxIterations)Create a fraction given the double value and maximum error allowed.BigFraction(double value, int maxDenominator)Create a fraction given the double value and maximum denominator.Fraction(double value)Create a fraction given the double value.Fraction(double value, double epsilon, int maxIterations)Create a fraction given the double value and maximum error allowed.Fraction(double value, int maxDenominator)Create a fraction given the double value and maximum denominator. - 
Uses of MathIllegalStateException in org.hipparchus.geometry
Methods in org.hipparchus.geometry that throw MathIllegalStateException Modifier and Type Method Description abstract Vector<S>VectorFormat. parse(String source)Parses a string to produce aVectorobject. - 
Uses of MathIllegalStateException in org.hipparchus.geometry.euclidean.oned
Methods in org.hipparchus.geometry.euclidean.oned that throw MathIllegalStateException Modifier and Type Method Description Vector1DVector1DFormat. parse(String source)Parses a string to produce aVectorobject. - 
Uses of MathIllegalStateException in org.hipparchus.geometry.euclidean.threed
Methods in org.hipparchus.geometry.euclidean.threed that throw MathIllegalStateException Modifier and Type Method Description T[]FieldRotation. getAngles(RotationOrder order)Deprecated.as of 3.6, replaced withFieldRotation.getAngles(RotationOrder, RotationConvention)T[]FieldRotation. getAngles(RotationOrder order, RotationConvention convention)Get the Cardan or Euler angles corresponding to the instance.double[]Rotation. getAngles(RotationOrder order)Deprecated.as of 3.6, replaced withRotation.getAngles(RotationOrder, RotationConvention)double[]Rotation. getAngles(RotationOrder order, RotationConvention convention)Get the Cardan or Euler angles corresponding to the instance.Vector3DVector3DFormat. parse(String source)Parses a string to produce aVector3Dobject. - 
Uses of MathIllegalStateException in org.hipparchus.geometry.euclidean.twod
Methods in org.hipparchus.geometry.euclidean.twod that throw MathIllegalStateException Modifier and Type Method Description Vector2DVector2DFormat. parse(String source)Parses a string to produce aVectorobject. - 
Uses of MathIllegalStateException in org.hipparchus.geometry.euclidean.twod.hull
Methods in org.hipparchus.geometry.euclidean.twod.hull that throw MathIllegalStateException Modifier and Type Method Description ConvexHull2DConvexHullGenerator2D. generate(Collection<Vector2D> points)Builds the convex hull from the set of input points. - 
Uses of MathIllegalStateException in org.hipparchus.geometry.hull
Methods in org.hipparchus.geometry.hull that throw MathIllegalStateException Modifier and Type Method Description ConvexHull<S,P>ConvexHullGenerator. generate(Collection<P> points)Builds the convex hull from the set of input points. - 
Uses of MathIllegalStateException in org.hipparchus.geometry.spherical.twod
Methods in org.hipparchus.geometry.spherical.twod that throw MathIllegalStateException Modifier and Type Method Description protected voidSphericalPolygonsSet. computeGeometricalProperties()Compute some geometrical properties.List<Vertex>SphericalPolygonsSet. getBoundaryLoops()Get the boundary loops of the polygon. - 
Uses of MathIllegalStateException in org.hipparchus.linear
Methods in org.hipparchus.linear that throw MathIllegalStateException Modifier and Type Method Description RealVectorIterativeLinearSolver. solve(RealLinearOperator a, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorIterativeLinearSolver. solve(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealLinearOperator m, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealLinearOperator m, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealLinearOperator m, RealVector b, boolean goodb, double shift)Returns an estimate of the solution to the linear system (A - shift · I) · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealVector b, boolean goodb, double shift)Returns the solution to the system (A - shift · I) · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b.RealVectorConjugateGradient. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.abstract RealVectorIterativeLinearSolver. solveInPlace(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.abstract RealVectorPreconditionedIterativeLinearSolver. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solveInPlace(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x, boolean goodb, double shift)Returns an estimate of the solution to the linear system (A - shift · I) · x = b.RealVectorSymmLQ. solveInPlace(RealLinearOperator a, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b. - 
Uses of MathIllegalStateException in org.hipparchus.migration.exception
Subclasses of MathIllegalStateException in org.hipparchus.migration.exception Modifier and Type Class Description classConvergenceExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalStateExceptionclassMathInternalErrorDeprecated.as of 1.0, this exception is replaced byMathIllegalStateExceptionclassMathParseExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalStateExceptionclassMaxCountExceededExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalStateExceptionclassTooManyEvaluationsExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalArgumentExceptionclassTooManyIterationsExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalArgumentException - 
Uses of MathIllegalStateException in org.hipparchus.migration.geometry.euclidean
Subclasses of MathIllegalStateException in org.hipparchus.migration.geometry.euclidean Modifier and Type Class Description classCardanEulerSingularityExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalStateException - 
Uses of MathIllegalStateException in org.hipparchus.migration.ode
Methods in org.hipparchus.migration.ode that throw MathIllegalStateException Modifier and Type Method Description voidFirstOrderDifferentialEquations. computeDerivatives(double t, double[] y, double[] yDot)Deprecated.Get the current time derivative of the state vector.default double[]SecondaryEquations. computeDerivatives(double t, double[] primary, double[] primaryDot, double[] secondary)Deprecated.Compute the derivatives related to the secondary state parameters.voidSecondaryEquations. computeDerivatives(double t, double[] primary, double[] primaryDot, double[] secondary, double[] secondaryDot)Deprecated.Compute the derivatives related to the secondary state parameters.double[][]MainStateJacobianProvider. computeMainStateJacobian(double t, double[] y, double[] yDot)Deprecated.Compute the jacobian matrix of ODE with respect to main state.default double[]ParameterJacobianProvider. computeParameterJacobian(double t, double[] y, double[] yDot, String paramName)Deprecated.Compute the Jacobian matrix of ODE with respect to one parameter.voidParameterJacobianProvider. computeParameterJacobian(double t, double[] y, double[] yDot, String paramName, double[] dFdP)Deprecated.Compute the Jacobian matrix of ODE with respect to one parameter.double[]ContinuousOutputModel. getInterpolatedDerivatives()Deprecated.Get the derivatives of the state vector of the interpolated point.double[]ContinuousOutputModel. getInterpolatedSecondaryDerivatives(int secondaryStateIndex)Deprecated.Get the interpolated secondary derivatives corresponding to the secondary equations.double[]ContinuousOutputModel. getInterpolatedSecondaryState(int secondaryStateIndex)Deprecated.Get the interpolated secondary state corresponding to the secondary equations.double[]ContinuousOutputModel. getInterpolatedState()Deprecated.Get the state vector of the interpolated point. - 
Uses of MathIllegalStateException in org.hipparchus.migration.ode.sampling
Methods in org.hipparchus.migration.ode.sampling that throw MathIllegalStateException Modifier and Type Method Description StepInterpolatorStepInterpolator. copy()Deprecated.Copy the instance.double[]StepInterpolator. getInterpolatedDerivatives()Deprecated.as of 1.0, replaced withODEStateInterpolator.getInterpolatedState(double).ODEStateAndDerivative.getPrimaryDerivative()double[]StepInterpolator. getInterpolatedSecondaryDerivatives(int index)Deprecated.as of 1.0, replaced withODEStateInterpolator.getInterpolatedState(double).ODEStateAndDerivative.getSecondaryDerivative(int)double[]StepInterpolator. getInterpolatedSecondaryState(int index)Deprecated.as of 1.0, replaced withODEStateInterpolator.getInterpolatedState(double).ODEState.getSecondaryState(int)double[]StepInterpolator. getInterpolatedState()Deprecated.as of 1.0, replaced withODEStateInterpolator.getInterpolatedState(double).ODEState.getPrimaryState()voidStepHandler. handleStep(org.hipparchus.migration.ode.sampling.MigrationStepInterpolator interpolator, boolean isLast)Deprecated.Handle the last accepted stepdefault voidStepHandler. handleStep(ODEStateInterpolator interpolator, boolean isLast)Deprecated.Handle the last accepted step - 
Uses of MathIllegalStateException in org.hipparchus.migration.optim.linear
Subclasses of MathIllegalStateException in org.hipparchus.migration.optim.linear Modifier and Type Class Description classNoFeasibleSolutionExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalStateExceptionclassUnboundedSolutionExceptionDeprecated.as of 1.0, this exception is replaced byMathIllegalStateException - 
Uses of MathIllegalStateException in org.hipparchus.ode
Methods in org.hipparchus.ode that throw MathIllegalStateException Modifier and Type Method Description protected FieldODEStateAndDerivative<T>AbstractFieldIntegrator. acceptStep(AbstractFieldODEStateInterpolator<T> interpolator, T tEnd)Accept a step, triggering events and step handlers.protected ODEStateAndDerivativeAbstractIntegrator. acceptStep(AbstractODEStateInterpolator interpolator, double tEnd)Accept a step, triggering events and step handlers.voidDenseOutputModel. append(DenseOutputModel model)Append another model at the end of the instance.voidFieldDenseOutputModel. append(FieldDenseOutputModel<T> model)Append another model at the end of the instance.T[]AbstractFieldIntegrator. computeDerivatives(T t, T[] y)Compute the derivatives and check the number of evaluations.double[]AbstractIntegrator. computeDerivatives(double t, double[] y)Compute the derivatives and check the number of evaluations.Complex[]ComplexSecondaryODE. computeDerivatives(double t, Complex[] primary, Complex[] primaryDot, Complex[] secondary)Compute the derivatives related to the secondary state parameters.double[]ExpandableODE. computeDerivatives(double t, double[] y)Get the current time derivative of the complete state vector.T[]FieldExpandableODE. computeDerivatives(T t, T[] y)Get the current time derivative of the complete state vector.T[]FieldSecondaryODE. computeDerivatives(T t, T[] primary, T[] primaryDot, T[] secondary)Compute the derivatives related to the secondary state parameters.double[]SecondaryODE. computeDerivatives(double t, double[] primary, double[] primaryDot, double[] secondary)Compute the derivatives related to the secondary state parameters.double[][]ODEJacobiansProvider. computeMainStateJacobian(double t, double[] y, double[] yDot)Compute the Jacobian matrix of ODE with respect to state.double[]NamedParameterJacobianProvider. computeParameterJacobian(double t, double[] y, double[] yDot, String paramName)Compute the Jacobian matrix of ODE with respect to one parameter.voidDenseOutputModel. handleStep(ODEStateInterpolator interpolator, boolean isLast)Handle the last accepted step.voidFieldDenseOutputModel. handleStep(FieldODEStateInterpolator<T> interpolator, boolean isLast)Handle the last accepted step.FieldODEStateAndDerivative<T>FieldODEIntegrator. integrate(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime)Integrate the differential equations up to the given time.ODEStateAndDerivativeODEIntegrator. integrate(ExpandableODE equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time.default doubleODEIntegrator. integrate(OrdinaryDifferentialEquation equations, double t0, double[] y0, double t, double[] y)Deprecated.as of 1.0, replaced withODEIntegrator.integrate(ExpandableODE, ODEState, double)default ODEStateAndDerivativeODEIntegrator. integrate(OrdinaryDifferentialEquation equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time.protected voidMultistepFieldIntegrator. start(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T t)Start the integration.protected voidMultistepIntegrator. start(ExpandableODE equations, ODEState initialState, double finalTime)Start the integration. - 
Uses of MathIllegalStateException in org.hipparchus.ode.events
Methods in org.hipparchus.ode.events that throw MathIllegalStateException Modifier and Type Method Description booleanEventState. evaluateStep(ODEStateInterpolator interpolator)Evaluate the impact of the proposed step on the event handler.booleanFieldEventState. evaluateStep(FieldODEStateInterpolator<T> interpolator)Evaluate the impact of the proposed step on the event handler.voidEventState. reinitializeBegin(ODEStateInterpolator interpolator)Reinitialize the beginning of the step.voidFieldEventState. reinitializeBegin(FieldODEStateInterpolator<T> interpolator)Reinitialize the beginning of the step. - 
Uses of MathIllegalStateException in org.hipparchus.ode.nonstiff
Methods in org.hipparchus.ode.nonstiff that throw MathIllegalStateException Modifier and Type Method Description TAdaptiveStepsizeFieldIntegrator. initializeStep(boolean forward, int order, T[] scale, FieldODEStateAndDerivative<T> state0, FieldEquationsMapper<T> mapper)Initialize the integration step.doubleAdaptiveStepsizeIntegrator. initializeStep(boolean forward, int order, double[] scale, ODEStateAndDerivative state0, EquationsMapper mapper)Initialize the integration step.FieldODEStateAndDerivative<T>AdamsBashforthFieldIntegrator. integrate(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime)Integrate the differential equations up to the given time.ODEStateAndDerivativeAdamsBashforthIntegrator. integrate(ExpandableODE equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time.abstract FieldODEStateAndDerivative<T>AdamsFieldIntegrator. integrate(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime)Integrate the differential equations up to the given time.abstract ODEStateAndDerivativeAdamsIntegrator. integrate(ExpandableODE equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time.FieldODEStateAndDerivative<T>AdamsMoultonFieldIntegrator. integrate(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime)Integrate the differential equations up to the given time.ODEStateAndDerivativeAdamsMoultonIntegrator. integrate(ExpandableODE equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time.FieldODEStateAndDerivative<T>EmbeddedRungeKuttaFieldIntegrator. integrate(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime)Integrate the differential equations up to the given time.ODEStateAndDerivativeEmbeddedRungeKuttaIntegrator. integrate(ExpandableODE equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time.ODEStateAndDerivativeGraggBulirschStoerIntegrator. integrate(ExpandableODE equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time.FieldODEStateAndDerivative<T>RungeKuttaFieldIntegrator. integrate(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime)Integrate the differential equations up to the given time.ODEStateAndDerivativeRungeKuttaIntegrator. integrate(ExpandableODE equations, ODEState initialState, double finalTime)Integrate the differential equations up to the given time. - 
Uses of MathIllegalStateException in org.hipparchus.ode.sampling
Methods in org.hipparchus.ode.sampling that throw MathIllegalStateException Modifier and Type Method Description protected abstract FieldODEStateAndDerivative<T>AbstractFieldODEStateInterpolator. computeInterpolatedStateAndDerivatives(FieldEquationsMapper<T> equationsMapper, T time, T theta, T thetaH, T oneMinusThetaH)Compute the state and derivatives at the interpolated time.protected abstract ODEStateAndDerivativeAbstractODEStateInterpolator. computeInterpolatedStateAndDerivatives(EquationsMapper equationsMapper, double time, double theta, double thetaH, double oneMinusThetaH)Compute the state and derivatives at the interpolated time.voidFieldODEStepHandler. handleStep(FieldODEStateInterpolator<T> interpolator, boolean isLast)Handle the last accepted stepvoidFieldStepNormalizer. handleStep(FieldODEStateInterpolator<T> interpolator, boolean isLast)Handle the last accepted stepvoidODEStepHandler. handleStep(ODEStateInterpolator interpolator, boolean isLast)Handle the last accepted stepvoidStepNormalizer. handleStep(ODEStateInterpolator interpolator, boolean isLast)Handle the last accepted step - 
Uses of MathIllegalStateException in org.hipparchus.optim
Methods in org.hipparchus.optim that throw MathIllegalStateException Modifier and Type Method Description protected voidBaseOptimizer. incrementEvaluationCount()Increment the evaluation count.protected voidBaseOptimizer. incrementIterationCount()Increment the iteration count.PBaseOptimizer. optimize()Performs the optimization.PBaseOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. - 
Uses of MathIllegalStateException in org.hipparchus.optim.linear
Methods in org.hipparchus.optim.linear that throw MathIllegalStateException Modifier and Type Method Description protected voidSimplexSolver. doIteration(org.hipparchus.optim.linear.SimplexTableau tableau)Runs one iteration of the Simplex method on the given model.PointValuePairSimplexSolver. doOptimize()Performs the bulk of the optimization algorithm.PointValuePairLinearOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization.PointValuePairSimplexSolver. optimize(OptimizationData... optData)Stores data and performs the optimization.protected voidSimplexSolver. solvePhase1(org.hipparchus.optim.linear.SimplexTableau tableau)Solves Phase 1 of the Simplex method. - 
Uses of MathIllegalStateException in org.hipparchus.optim.nonlinear.scalar
Methods in org.hipparchus.optim.nonlinear.scalar that throw MathIllegalStateException Modifier and Type Method Description PointValuePairGradientMultivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization.PointValuePairMultivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. - 
Uses of MathIllegalStateException in org.hipparchus.optim.nonlinear.scalar.gradient
Methods in org.hipparchus.optim.nonlinear.scalar.gradient that throw MathIllegalStateException Modifier and Type Method Description PointValuePairNonLinearConjugateGradientOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. - 
Uses of MathIllegalStateException in org.hipparchus.optim.nonlinear.scalar.noderiv
Methods in org.hipparchus.optim.nonlinear.scalar.noderiv that throw MathIllegalStateException Modifier and Type Method Description PointValuePairCMAESOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. - 
Uses of MathIllegalStateException in org.hipparchus.optim.univariate
Methods in org.hipparchus.optim.univariate that throw MathIllegalStateException Modifier and Type Method Description UnivariatePointValuePairUnivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. - 
Uses of MathIllegalStateException in org.hipparchus.random
Constructors in org.hipparchus.random that throw MathIllegalStateException Constructor Description SobolSequenceGenerator(int dimension, InputStream is)Construct a new Sobol sequence generator for the given space dimension with direction vectors loaded from the given stream. - 
Uses of MathIllegalStateException in org.hipparchus.special
Methods in org.hipparchus.special that throw MathIllegalStateException Modifier and Type Method Description doubleBesselJ. value(double x)Returns the value of the constructed Bessel function of the first kind, for the passed argument.static doubleBesselJ. value(double order, double x)Returns the first Bessel function, \(J_{order}(x)\). - 
Uses of MathIllegalStateException in org.hipparchus.stat.descriptive
Methods in org.hipparchus.stat.descriptive that throw MathIllegalStateException Modifier and Type Method Description voidDescriptiveStatistics. removeMostRecentValue()Removes the most recent value from the dataset.doubleDescriptiveStatistics. replaceMostRecentValue(double v)Replaces the most recently stored value with the given value. - 
Uses of MathIllegalStateException in org.hipparchus.stat.fitting
Methods in org.hipparchus.stat.fitting that throw MathIllegalStateException Modifier and Type Method Description doubleEmpiricalDistribution. getNextValue()Generates a random value from this distribution. - 
Uses of MathIllegalStateException in org.hipparchus.stat.inference
Methods in org.hipparchus.stat.inference that throw MathIllegalStateException Modifier and Type Method Description doubleOneWayAnova. anovaPValue(Collection<double[]> categoryData)Computes the ANOVA P-value for a collection ofdouble[]arrays.doubleOneWayAnova. anovaPValue(Collection<StreamingStatistics> categoryData, boolean allowOneElementData)Computes the ANOVA P-value for a collection ofStreamingStatistics.booleanOneWayAnova. anovaTest(Collection<double[]> categoryData, double alpha)Performs an ANOVA test, evaluating the null hypothesis that there is no difference among the means of the data categories.doubleChiSquareTest. chiSquareTest(double[] expected, long[] observed)Returns the observed significance level, or p-value, associated with a Chi-square goodness of fit test comparing theobservedfrequency counts to those in theexpectedarray.booleanChiSquareTest. chiSquareTest(double[] expected, long[] observed, double alpha)Performs a Chi-square goodness of fit test evaluating the null hypothesis that the observed counts conform to the frequency distribution described by the expected counts, with significance levelalpha.doubleChiSquareTest. chiSquareTest(long[][] counts)Returns the observed significance level, or p-value, associated with a chi-square test of independence based on the inputcountsarray, viewed as a two-way table.booleanChiSquareTest. chiSquareTest(long[][] counts, double alpha)Performs a chi-square test of independence evaluating the null hypothesis that the classifications represented by the counts in the columns of the input 2-way table are independent of the rows, with significance levelalpha.static doubleInferenceTestUtils. chiSquareTest(double[] expected, long[] observed)static booleanInferenceTestUtils. chiSquareTest(double[] expected, long[] observed, double alpha)static doubleInferenceTestUtils. chiSquareTest(long[][] counts)static booleanInferenceTestUtils. chiSquareTest(long[][] counts, double alpha)doubleChiSquareTest. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2)Returns the observed significance level, or p-value, associated with a Chi-Square two sample test comparing bin frequency counts inobserved1andobserved2.booleanChiSquareTest. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)Performs a Chi-Square two sample test comparing two binned data sets.static doubleInferenceTestUtils. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2)static booleanInferenceTestUtils. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)doubleGTest. gTest(double[] expected, long[] observed)Returns the observed significance level, or p-value, associated with a G-Test for goodness of fit comparing theobservedfrequency counts to those in theexpectedarray.booleanGTest. gTest(double[] expected, long[] observed, double alpha)Performs a G-Test (Log-Likelihood Ratio Test) for goodness of fit evaluating the null hypothesis that the observed counts conform to the frequency distribution described by the expected counts, with significance levelalpha.static doubleInferenceTestUtils. gTest(double[] expected, long[] observed)static booleanInferenceTestUtils. gTest(double[] expected, long[] observed, double alpha)doubleGTest. gTestDataSetsComparison(long[] observed1, long[] observed2)Returns the observed significance level, or p-value, associated with a G-Value (Log-Likelihood Ratio) for two sample test comparing bin frequency counts inobserved1andobserved2.booleanGTest. gTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)Performs a G-Test (Log-Likelihood Ratio Test) comparing two binned data sets.static doubleInferenceTestUtils. gTestDataSetsComparison(long[] observed1, long[] observed2)static booleanInferenceTestUtils. gTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)doubleGTest. gTestIntrinsic(double[] expected, long[] observed)Returns the intrinsic (Hardy-Weinberg proportions) p-Value, as described in p64-69 of McDonald, J.H.static doubleInferenceTestUtils. gTestIntrinsic(double[] expected, long[] observed)static doubleInferenceTestUtils. homoscedasticTTest(double[] sample1, double[] sample2)static booleanInferenceTestUtils. homoscedasticTTest(double[] sample1, double[] sample2, double alpha)static doubleInferenceTestUtils. homoscedasticTTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)doubleTTest. homoscedasticTTest(double[] sample1, double[] sample2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the input arrays, under the assumption that the two samples are drawn from subpopulations with equal variances.booleanTTest. homoscedasticTTest(double[] sample1, double[] sample2, double alpha)Performs a two-sided t-test evaluating the null hypothesis thatsample1andsample2are drawn from populations with the same mean, with significance levelalpha, assuming that the subpopulation variances are equal.protected doubleTTest. homoscedasticTTest(double m1, double m2, double v1, double v2, double n1, double n2)Computes p-value for 2-sided, 2-sample t-test, under the assumption of equal subpopulation variances.doubleTTest. homoscedasticTTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances, under the hypothesis of equal subpopulation variances.static doubleInferenceTestUtils. oneWayAnovaPValue(Collection<double[]> categoryData)static booleanInferenceTestUtils. oneWayAnovaTest(Collection<double[]> categoryData, double alpha)static doubleInferenceTestUtils. pairedTTest(double[] sample1, double[] sample2)static booleanInferenceTestUtils. pairedTTest(double[] sample1, double[] sample2, double alpha)doubleTTest. pairedTTest(double[] sample1, double[] sample2)Returns the observed significance level, or p-value, associated with a paired, two-sample, two-tailed t-test based on the data in the input arrays.booleanTTest. pairedTTest(double[] sample1, double[] sample2, double alpha)Performs a paired t-test evaluating the null hypothesis that the mean of the paired differences betweensample1andsample2is 0 in favor of the two-sided alternative that the mean paired difference is not equal to 0, with significance levelalpha.static doubleInferenceTestUtils. tTest(double[] sample1, double[] sample2)static booleanInferenceTestUtils. tTest(double[] sample1, double[] sample2, double alpha)static doubleInferenceTestUtils. tTest(double mu, double[] sample)static booleanInferenceTestUtils. tTest(double mu, double[] sample, double alpha)static doubleInferenceTestUtils. tTest(double mu, StatisticalSummary sampleStats)static booleanInferenceTestUtils. tTest(double mu, StatisticalSummary sampleStats, double alpha)static doubleInferenceTestUtils. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)static booleanInferenceTestUtils. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha)doubleTTest. tTest(double[] sample1, double[] sample2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the input arrays.booleanTTest. tTest(double[] sample1, double[] sample2, double alpha)Performs a two-sided t-test evaluating the null hypothesis thatsample1andsample2are drawn from populations with the same mean, with significance levelalpha.doubleTTest. tTest(double mu, double[] sample)Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the input array with the constantmu.booleanTTest. tTest(double mu, double[] sample, double alpha)Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from whichsampleis drawn equalsmu.protected doubleTTest. tTest(double m, double mu, double v, double n)Computes p-value for 2-sided, 1-sample t-test.protected doubleTTest. tTest(double m1, double m2, double v1, double v2, double n1, double n2)Computes p-value for 2-sided, 2-sample t-test.doubleTTest. tTest(double mu, StatisticalSummary sampleStats)Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the dataset described bysampleStatswith the constantmu.booleanTTest. tTest(double mu, StatisticalSummary sampleStats, double alpha)Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from which the dataset described bystatsis drawn equalsmu.doubleTTest. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances.booleanTTest. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha)Performs a two-sided t-test evaluating the null hypothesis thatsampleStats1andsampleStats2describe datasets drawn from populations with the same mean, with significance levelalpha.doubleWilcoxonSignedRankTest. wilcoxonSignedRankTest(double[] x, double[] y, boolean exactPValue)Returns the observed significance level, or p-value, associated with a Wilcoxon signed ranked statistic comparing mean for two related samples or repeated measurements on a single sample. - 
Uses of MathIllegalStateException in org.hipparchus.util
Methods in org.hipparchus.util that throw MathIllegalStateException Modifier and Type Method Description doubleContinuedFraction. evaluate(double x)Evaluates the continued fraction at the value x.doubleContinuedFraction. evaluate(double x, double epsilon)Evaluates the continued fraction at the value x.doubleContinuedFraction. evaluate(double x, double epsilon, int maxIterations)Evaluates the continued fraction at the value x.doubleContinuedFraction. evaluate(double x, int maxIterations)Evaluates the continued fraction at the value x.voidIterationManager. incrementIterationCount()Increments the iteration count by one, and throws an exception if the maximum number of iterations is reached.doubleResizableDoubleArray. substituteMostRecentElement(double value)Substitutesvaluefor the most recently added value.voidIncrementor.MaxCountExceededCallback. trigger(int maximalCount)Function called when the maximal count has been reached. 
 -