필터 지우기
필터 지우기

Magnitude and direction of vectors

조회 수: 23 (최근 30일)
Ede gerlderlands
Ede gerlderlands 2013년 6월 30일
I have really find it difficult to plot both flow and direction of flow vectors superimposed each other. I have plotted the direction of the flow vector using
quiver(n,s,x,y) .
But the magnitude is given by
mag= sqrt(x.^2+y.^2);
Is there a way to plot magnitude of vector with direction
Thanks in advance.

답변 (1개)

the cyclist
the cyclist 2013년 6월 30일
편집: the cyclist 2013년 6월 30일
Really, I think you can solve your problem by reading the documentation for quiver() more carefully.
doc quiver
The first two arguments specify the spot where each vector will begin. The next two specify the length of each component.
x_start = 1;
y_start = 2;
x_length = 7;
y_length = 3;
figure
scale=0;
quiver(x_start,y_start,x_length,y_length,scale); % Set scale==0, to prevent auto-scaling. See documentation.
For your real plot, x_start etc are going to be column vectors with your actual data.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by