Quiver vector length difficulty

조회 수: 9 (최근 30일)
David Arnold
David Arnold 2018년 1월 20일
답변: Star Strider 2018년 1월 20일
I've written this:
[T,Y]=meshgrid(-4:0.5:4,-4:0.5:4);
S=-(2-Y).*Y;
L=sqrt(1+S.^2);
quiver(T,Y,1./L,S./L)
axis tight
shg
And all the arrows are the same length. But when I try this:
t=linspace(-2,2,16);
y=linspace(-4,4,16);
[T,Y]=meshgrid(t,y);
S=Y./T+3*T;
L=sqrt(1+S.^2);
quiver(T,Y,1./L,S./L,0.5)
axis tight
The arrows are not all the same length. Am I doing something wrong or are there suggestions? I am using Matlab R2017b.
Thanks

답변 (1개)

Star Strider
Star Strider 2018년 1월 20일
Specifying 0.5 as the scale factor simply halves their lengths. it does not remove scaling. If you want them not scaled, use 0 for the scaling factor. (I do not know what effect that would have in your plot, because it apparently requires that you interact with the GUI to adjust their lengths afterwards.)
See the documentation for quiver (link) and Quiver Properties (link) for details.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by