Package com.imsl.math
Interface ZeroSystem.Jacobian
- All Superinterfaces:
ZeroSystem.Function
- Enclosing class:
- ZeroSystem
Public interface for user supplied function to
ZeroSystem
object.-
Method Summary
Modifier and TypeMethodDescriptionvoidjacobian(double[] x, double[][] jac) Returns the value of the Jacobian at the given point.Methods inherited from interface com.imsl.math.ZeroSystem.Function
f
-
Method Details
-
jacobian
void jacobian(double[] x, double[][] jac) Returns the value of the Jacobian at the given point.- Parameters:
x- adoublearray of lengthnwhich contains the point at which the Jacobian is to be evaluated. The contents of this array must not be altered by this function.jac- adoublenbynmatrix which contains the value of the Jacobian atx. The value ofjac[i][j]is the derivative off[i]with respect tox[j].
-