bundles / scipy latest / scipy / optimize / _nonlin / Jacobian
class
scipy.optimize._nonlin:Jacobian
source: /scipy/optimize/_nonlin.py :383
Signature
class Jacobian ( ** kw ) Members
Summary
Common interface for Jacobians or Jacobian approximations.
Extended Summary
The optional methods come useful when implementing trust region etc., algorithms that often require evaluating transposes of the Jacobian.
Attributes
shapeMatrix dimensions (M, N)
dtypeData type of the matrix.
func: callable, optionalFunction the Jacobian corresponds to
Methods
solveReturns J^-1 * v
updateUpdates Jacobian to point
x(where the function has residualFx)matvec: optionalReturns J * v
rmatvec: optionalReturns A^H * v
rsolve: optionalReturns A^-H * v
matmat: optionalReturns A * V, where V is a dense matrix with dimensions (N,K).
todense: optionalForm the dense Jacobian matrix. Necessary for dense trust region algorithms, and useful for testing.
Aliases
-
scipy.optimize._nonlin.Jacobian