How do plot complicated function?
1 view (last 30 days)
Show older comments
x^2+ (y-3√x^2) ^2=1?
0 Comments
Answers (1)
Priyanshu Mishra
on 25 Nov 2019
Hi Daniella,
You may try following commands:
fun=@(x,y) x^2+(y-3*sqrt(x)^2)-1;
ezplot(fun)
0 Comments
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!