風速、風向の値から一つの矢印にしたいです。
이전 댓글 표시
下のように風速と風向をプロットしているのですが
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の使い方がわかりません。
답변 (1개)
Kazuya
2019년 1월 28일
quiver 関数を使う場合は、、風速・風向きをベクトルに変換すればOKかと思いますが、どうでしょう?
qx = huusoku*cos(windir);
qy = huusoku*sin(windir);
とかなんとか。
카테고리
도움말 센터 및 File Exchange에서 ベクトル場에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!