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
-
scipy.optimize.rosen(x)[source]
The Rosenbrock function.
The function computed is
sum(100.0*(x[1:] - x[:-1]**2.0)**2.0 + (1 - x[:-1])**2.0
Parameters : | x : array_like, 1D
The point at which the Rosenbrock function is to be computed.
|
Returns : | f : float
The value of the Rosenbrock function
|