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
Problem Comments
-
2 Comments
@Robert, can you please verify that the last test case is correct?
I corrected a typo, checked the "Restore all solutions" box, and clicked "Save." Not sure how to tell when they're rescored.
Solution Comments
Show commentsProblem Recent Solvers159
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15685 Solvers
-
Remove any row in which a NaN appears
8690 Solvers
-
15572 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
497 Solvers
-
Test if two numbers have the same digits
253 Solvers
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!