public static interface ZeroSystem.Jacobian extends ZeroSystem.Function
ZeroSystem
object.Modifier and Type | Method and Description |
---|---|
void |
jacobian(double[] x,
double[][] jac)
Returns the value of the Jacobian at the given point.
|
f
void jacobian(double[] x, double[][] jac)
x
- a double
array of length n
which contains the point at which the Jacobian is to be
evaluated. The contents of this array must not be
altered by this function.jac
- a double
n
by n
matrix which contains the value of the Jacobian at
x
. The value of jac[i][j]
is
the derivative of f[i]
with respect to
x[j]
.Copyright © 2020 Rogue Wave Software. All rights reserved.