simpeg.maps.ReciprocalMap.deriv#
- ReciprocalMap.deriv(m, v=None)[source]#
Derivative of mapping with respect to the input parameters.
For a mapping that computes the reciprocal for each parameter in the model \(\mathbf{m}\), i.e.:
\[\mathbf{u}(\mathbf{m}) = \mathbf{m}^{-1}\]the derivative of the mapping with respect to the model is a diagonal matrix of the form:
\[\frac{\partial \mathbf{u}}{\partial \mathbf{m}} = \textrm{diag} \big ( -\mathbf{m}^{-2} \big )\]- Parameters:
- m(
nP
)numpy.ndarray
A vector representing a set of model parameters
- v(
nP
)numpy.ndarray
If not
None
, the method returns the derivative times the vector v
- m(
- Returns:
scipy.sparse.csr_matrix
Derivative of the mapping with respect to the model parameters. If the input argument v is not
None
, the method returns the derivative times the vector v.