How to plot this equation?
1 view (last 30 days)
Show older comments
Answers (2)
Star Strider
on 9 May 2022
syms t y
f(t,y) = 2*y/t - (t*y)^2
figure
fsurf(f, [-5 5 -5 5])
xlabel('t')
ylabel('y')
zlabel('f(t,y)')
It is necesary to plot it as a surface.
.
0 Comments
See Also
Categories
Find more on Surface and Mesh 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!