*PLOT FIELD VECTOR*

14 views (last 30 days)
justin  Taylor
justin Taylor on 19 Dec 2011
(sin(4*x+8*y),cos(4*x+8*y),0)
  16 Comments
justin  Taylor
justin Taylor on 19 Dec 2011
OK !
Walter Roberson
Walter Roberson on 19 Dec 2011
You removed all the useful information from your question...

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 21 Dec 2011
>> t = linspace(0,4*pi,100);
>> [x,y] = ndgrid(t,t);
>> u = sin(4*x+8*y);
>> v = cos(4*x+8*y);
>> quiver(x,y,u,v)
  4 Comments
justin  Taylor
justin Taylor on 22 Dec 2011
So we could be good friends!
justin  Taylor
justin Taylor on 24 Dec 2011
Merry chistmat !

Sign in to comment.

More Answers (0)

Categories

Find more on Vector Fields in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!