필터 지우기
필터 지우기

How to set colors in quiver (2D)?

조회 수: 110 (최근 30일)
noa
noa 2012년 9월 20일
댓글: Jean 2015년 8월 25일
Hi, im using the quiver function to plot arrows on a profile
so i want that the arrows which are turning inwards to be colored in a different color (blue). Also, i have a vector telling me which of them is turning inwards.
how can i do that?
thanks, Noa
  댓글 수: 2
José-Luis
José-Luis 2012년 9월 20일
I see you decided to go with the quiver suggestion. If an answer has helped you, please accept it.
noa
noa 2012년 9월 20일
:)

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

채택된 답변

Wayne King
Wayne King 2012년 9월 20일
편집: Wayne King 2012년 9월 20일
I would separate the elements which are turning inward vs outward since you have a vector of indices and use two different calls to quiver() with the plot held on.
Then you can use
quiver(x,y,px,py,'color',[0 0 1])
In other words, use the 'color' linespec to color them blue. For example:
[x,y] = meshgrid(-2:.2:2,-1:.15:1);
z = x .* exp(-x.^2 - y.^2); [px,py] = gradient(z,.2,.15);
contour(x,y,z), hold on
indices = 11:21;
quiver(x(:,indices),y(:,indices),px(:,indices),py(:,indices),'color',[0 0 1]);
quiver(x(:,1:10),y(:,1:10),px(:,1:10),py(:,1:10),'color',[1 0 0]);
  댓글 수: 1
Jean
Jean 2015년 8월 25일
Thanks a lot. It works!

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

추가 답변 (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