No arrows in quiver plot
Show older comments
For some reason there are no arrows in my quiver plot just some weird marks. What am I doing wrong?
if true
clc; clear;
alpha = 0.6; beta = 0.4; rho = 2; gamma = 0.6; phi = 0.7; x = 400; s = 0.2;
l = 100; a = 0.3;
[l,a] = meshgrid(-10:1:10);
lend = NaN(size(l)); aend = NaN(size(l));
%calculate next point from each point
for i=1:length(l)
for j=1:length(a)
lEnd(i,j) = (gamma/rho)*l(i)^(alpha)*a(j)^(1-alpha)*x^(1-alpha);
aEnd(i,j) = s*l(i)^(beta+1)*a(j)^(phi)*x^(-beta) ;
end
end
%plot, arrow directions are changes
quiver(l,a,lEnd-l,aEnd-a,s)
end
Answers (1)
David Sanchez
on 13 May 2013
0 votes
set s=2 (for example), you are scaling the arrows to a very small size.
2 Comments
Elle
on 13 May 2013
Youssef Khmou
on 13 May 2013
hi, the arrows look fine, what is the issue?
Categories
Find more on Vector Fields in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!