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

8 ビュー (過去 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 Center および File ExchangeCondensed Matter & Materials Physics についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by