How to plot this equation?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Risposte (2)
Star Strider
il 9 Mag 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 Commenti
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!