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_hess
-
scipy.optimize.rosen_hess(x)[source]
The Hessian matrix of the Rosenbrock function.
Parameters : | x : array_like, 1D
The point at which the Hessian matrix is to be computed.
|
Returns : | hess : 2D numpy array
The Hessian matrix of the Rosenbrock function at x.
|