Skip to content

cjtonde/optimize_rosenbrock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

optimize_rosenbrock

A simple python code for minimize the Rosenbrock function.

The Rosenbrock's function of N variables,

$$ f(x) = \sum_{i=1}^{N-1}100*(x_i - x_{i-1}^2)^2 + (1- x_{i-1}^2) $$ Dependencies

The code is tested to work under Python 3.4.

The required dependencies to build the software are NumPy >= 1.6.2, SciPy >= 0.9 and a working C/C++ compiler.

Running

To run just use::

python ./src/optmize_rosenbrock.py

About

A simple python code to minimize the Rosenbrocl's function

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages