This is documentation for an old release of SciPy (version 0.11.0). Read this page Search for this page in the documentation of the latest stable release (version 1.15.1).
scipy.optimize.rosen_der
-
scipy.optimize.rosen_der(x)[source]
The derivative (i.e. gradient) of the Rosenbrock function.
Parameters : | x : array_like, 1D
The point at which the derivative is to be computed.
|
Returns : | der : 1D numpy array
The gradient of the Rosenbrock function at x.
|