How to plot this equation?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
0 commentaires
Réponses (2)
Star Strider
le 9 Mai 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 commentaires
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!