I want to draw dotted line arrow by using quiver. What do I have to do?
조회 수: 5 (최근 30일)
이전 댓글 표시
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Vector Fields에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!