| Package | Description |
|---|---|
| smile.math |
Basic mathematical functions, complex, differentiable function interfaces,
random number generators, unconstrained optimization, and raw data type
(int and double) array lists, etc.
|
| Modifier and Type | Method and Description |
|---|---|
static double |
Math.root(DifferentiableFunction func,
double x1,
double x2,
double tol)
Returns the root of a function whose derivative is available known
to lie between x1 and x2 by Newton-Raphson method.
|
static double |
Math.root(DifferentiableFunction func,
double x1,
double x2,
double tol,
int maxIter)
Returns the root of a function whose derivative is available known
to lie between x1 and x2 by Newton-Raphson method.
|
Copyright © 2015. All rights reserved.