Package | Description |
---|---|
org.josef.science.math |
Mathematical related classes.
|
Modifier and Type | Method and Description |
---|---|
double |
RootFinderStrategy.findRoot(SingleParameterFunction function,
double left,
double right)
Finds a root of the supplied function, within the supplied interval [left, right], using a
RootFinderStrategy . |
double |
RootFinderContext.findRoot(SingleParameterFunction function,
double left,
double right)
Finds a root of the supplied function, within the supplied interval
[left, right], using a
RootFinderStrategy . |
double |
RegulaFalsi.findRoot(SingleParameterFunction function,
double left,
double right)
Finds a root of the supplied function within the supplied interval [left,
right] using the Regula Falsi method.
|
double |
Bisection.findRoot(SingleParameterFunction function,
double left,
double right)
Finds a root of the supplied function within the supplied interval [left,
right] using the Bisection method.
|
Constructor and Description |
---|
FunctionInterval(SingleParameterFunction function,
double left,
double right)
Creates this FunctionInterval from the supplied function and left and right sides of the interval.
|
Copyright © 2008–2018. All rights reserved.