Quiver

조회 수: 19 (최근 30일)
John
John 2012년 2월 25일
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?

답변 (1개)

Walter Roberson
Walter Roberson 2012년 2월 25일
[FX, FY] = gradient(S);
quiver(T, Y, FX, FY);

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by