How to increase Quiver_tri arrow length

조회 수: 2 (최근 30일)
Emmanuel Emmanuel
Emmanuel Emmanuel 2020년 1월 10일
답변: Emmanuel Emmanuel 2020년 1월 11일
%QUIVER_TRI(x,y,u,v,headsize,headangle,width,col)
can any body help with insight on how to increase the arrow head using Quiver_tri function.
say, quiver_tri (xx_, yy_, uu15_, vv15_,5,27.5,1,'k');
%quiver_tri(x,y,u,v,headsize,headangle,width,col)

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 1월 10일
편집: KALYAN ACHARJYA 2020년 1월 10일
Quiver_tri arrow length
When I tried, the arrow length is adjusted with gird number.
[x,y] = meshgrid(0:0.5:2,0:0.5:2);
u = cos(x).*y;
v = sin(x).*y;
figure
quiver(x,y,u,v)
[x,y] = meshgrid(0:0.2:2,0:0.2:2);
u = cos(x).*y;
v = sin(x).*y;
figure
quiver(x,y,u,v)
  댓글 수: 1
Emmanuel Emmanuel
Emmanuel Emmanuel 2020년 1월 10일
편집: Emmanuel Emmanuel 2020년 1월 10일
Thank you@ Kalyan AcharJya.
However, I want the quiver head modified to a reasonable size and this am not getting with quiver function, that was why I opted to used quiver_tri function. Though quiver_tri gave me the desired head size but a shorter quiver tail.
That was why I asked the question.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Emmanuel Emmanuel
Emmanuel Emmanuel 2020년 1월 11일
Thank you@ Kalyan AcharJya. I got it now

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by