Problem 481. Rosenbrock's Banana Function and its derivatives

Write a function to return the value of Rosenbrock's two-dimensional banana function, as well as it's gradient (column) vector and Hessian matrix, given a vector of it's two independent variables x1 and x2. Here's the Rosenbrock function:

 100*[(x2-x1^2)^2] + (1-x1)^2

Solution Stats

31.34% Correct | 68.66% Incorrect
Last Solution submitted on Mar 05, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers150

Suggested Problems

More from this Author17

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!