How to plot this equation?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
0 comentarios
Respuestas (2)
Star Strider
el 9 de Mayo de 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 comentarios
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!