Why does MATLAB can't plot two function 'quiver' in one graph??

조회 수: 6 (최근 30일)
I'm using two 'quiver' function but MATLAB only plot one function.
h4=axes('position', [0.1 .55 width height],'box', 'on', 'xcolor', 'k','ycolor',...
'k');
set(gcf,'color', 'w')
axis equal;
quiver(Px,Py,a44,a44);
quiver(Px,Py,w22,w22);
axis([xmin xmax ymin ymax]);
Thx,,

채택된 답변

Walter Roberson
Walter Roberson 2012년 9월 2일
Add the statement
hold on
before the second call to quiver()
quiver() is considered a high-level plotting function, as are all plotting functions other than line(), surface(), patch(), text(), figure() and axis(). The high-level plotting functions automatically clear the existing graphics unless "hold on" or "hold all" (or the internal equivalents) are in effect. This is not specific to quiver().

추가 답변 (1개)

sven_sight
sven_sight 2012년 9월 3일
Thx walter,,

카테고리

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