Package | Description |
---|---|
lib.easyjava.math.function | |
lib.easyjava.math.stat |
Modifier and Type | Method and Description |
---|---|
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.derivative() |
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.integral() |
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.minus(UnivariatePolynomialFunction f)
Subtracts the provided function from this one
|
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.opposite()
Reverses the sign of this function
|
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.plus(UnivariatePolynomialFunction f)
Adds the provided function to this one
|
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.times(UnivariatePolynomialFunction f)
Multiplies the given function with this one
|
Modifier and Type | Method and Description |
---|---|
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.minus(UnivariatePolynomialFunction f)
Subtracts the provided function from this one
|
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.plus(UnivariatePolynomialFunction f)
Adds the provided function to this one
|
UnivariatePolynomialFunction |
UnivariatePolynomialFunction.times(UnivariatePolynomialFunction f)
Multiplies the given function with this one
|
Modifier and Type | Method and Description |
---|---|
UnivariatePolynomialFunction |
SimpleLinearRegressor.regress()
Performs the regression, producing a function representing the
least-squares linear approximation of the data.
|
static UnivariatePolynomialFunction |
SimpleLinearRegressor.regress(double[] xValues,
double[] yValues)
Performs regression on the provided data, producing a function
representing the least-squares linear approximation of the data.
|