필터 지우기
필터 지우기

How to define limit of quiver axis?

조회 수: 24 (최근 30일)
Hamed Nobarani
Hamed Nobarani 2019년 11월 16일
댓글: Hamed Nobarani 2019년 11월 16일
How can I define limit of my x and y axis in quiver?
q quiver(X(j),Y(j),U(j),V(j),'color', cmap(idx,:))
I have tried these Three lines but it is not working.
figure(i)
title('2D')
t=num2str(i);
xlabel([t,' ps'])
% axis[(-40 80 -10 60)]
xlim([5 20])
ylim([10 15])

채택된 답변

Erivelton Gualter
Erivelton Gualter 2019년 11월 16일
You could use axis function. For more information check here: https://www.mathworks.com/help/matlab/ref/axis.html
See the following example. There ae two subplots, the second one just shows the plot between x = [0 1] and y=[0 1]
[x,y] = meshgrid(0:0.2:2,0:0.2:2);
u = cos(x).*y;
v = sin(x).*y;
figure
subplot(211); quiver(x,y,u,v)
subplot(212); quiver(x,y,u,v); axis([0 1 0 1])
  댓글 수: 1
Hamed Nobarani
Hamed Nobarani 2019년 11월 16일
it worked. Thanks.
quiver(X(j),Y(j),U(j),V(j),'color', cmap(idx,:))
axis([4 22 4 22])

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by