how to plot into quadratic graph?

2 views (last 30 days)
f = @(x,y) 100*(Y-X^2)^2+(1-X)^2

Accepted Answer

Ameer Hamza
Ameer Hamza on 22 Mar 2020
f = @(x,y) 100*(y-y.^2).^2+(1-x).^2;
fsurf(f, [-10 10 -10 10])
  4 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!