deerlab.Jacobian¶
- Jacobian(fcn, x0, lb, ub)[source]¶
Finite difference Jacobian estimation
Estimates the Jacobian matrix of a vector-valued function at the point taking into consideration box-constraints of the vector-valued variable
x
defined by its lower and upper bounds.- Parameters:
- fcncallable
Function to be differentiated.
- x0ndarray
Point at which to differentiate.
- lbndarray
Lower bounds of .
- ubndarray
Upper bounds of .
Notes
This is a wrapper around the
scipy.optimize._numdiff.approx_derivative
function of the Scipy package.