Mostrar comentarios más antiguos
plot the direction field for dy/dt=(y^2)-ty.
so heres my script:
[T,Y]= meshgrid (-2:.2:2 -2:.2:2);
S= (Y.^2)-(T*Y); L= (??);
quiver(T,Y, ??, ??, ??), axis tight
xlabel 't', ylabel 'y'
title 'Direction Field for dy/dt=y^2-ty'
now, looking up help quiver, the example they used a gradient for the "L" and then used those value(s?) to plug into the third and fourth terms for "quiver". What do I do for the "??"s?
Respuestas (1)
Walter Roberson
el 25 de Feb. de 2012
[FX, FY] = gradient(S);
quiver(T, Y, FX, FY);
Categorías
Más información sobre Vector Fields en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!