Im trying to graph f(x,y)=x+2y-2 and g(x,y)x^2+4y^2-4 on the same graph
2 次查看(过去 30 天)
显示 更早的评论
I have been having difficulty understanding the process of graphing while learning matlab this season. I need help simply just plotting them.
0 个评论
采纳的回答
Sambit Supriya Dash
2021-11-28
编辑:Sambit Supriya Dash
2021-11-28
fsurf(@(x,y) x+(2*y)-2)
hold on
fsurf(@(x,y) (x^2)+(4*(y^2))-4)
hold off
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!