風速、風向の値から一つの矢印にしたいです。
Afficher commentaires plus anciens
下のように風速と風向をプロットしているのですが
subplot(211); hold on; grid on; box on;
plot((timen-timeorig)*24,winsp);
subplot(211); hold on; grid on; box on;
plot((timen-timeorig)*24,windir);
風速と風向を一つの矢印にして長さと角度のパラメータで表したいと思うのですが、
風向(windir)は角度(degree)の値であるため、
quiverの使い方がわかりません。
Réponses (1)
Kazuya
le 28 Jan 2019
quiver 関数を使う場合は、、風速・風向きをベクトルに変換すればOKかと思いますが、どうでしょう?
qx = huusoku*cos(windir);
qy = huusoku*sin(windir);
とかなんとか。
Catégories
En savoir plus sur ベクトル場 dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!