scipy.optimize.

InverseJacobian#

class scipy.optimize.InverseJacobian(jacobian)[source]#

A simple wrapper that inverts the Jacobian using the solve method.

Legacy

This class is considered legacy and will no longer receive updates. This could also mean it will be removed in future SciPy versions. See the newer, more consistent interfaces in scipy.optimize.

Parameters:
jacobianJacobian

The Jacobian to invert.

Attributes:
shape

Matrix dimensions (M, N)

dtype

Data type of the matrix.