I want to draw dotted line arrow by using quiver. What do I have to do?

조회 수: 5 (최근 30일)
Chris
Chris 2021년 12월 7일
답변: Matt J 2021년 12월 7일
I want to draw dotted line arrow by using quiver. What do I have to do?

채택된 답변

Matt J
Matt J 2021년 12월 7일
For example,
load('wind','x','y','u','v')
X = x(11:22,11:22,1);
Y = y(11:22,11:22,1);
U = u(11:22,11:22,1);
V = v(11:22,11:22,1);
quiver(X,Y,U,V,':','LineWidth',1.5)

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