plotting wind direction V/S time in months (timeseries)
3 ビュー (過去 30 日間)
古いコメントを表示
hi friends, i want to plot wind direction data that i have, the data is day wise and have seporate files for each year from 2007- 2013 , i have to plot in one plot....
3 件のコメント
回答 (1 件)
Hugo
2013 年 6 月 10 日
Suppose you have the data in a matrix A, each row representing a measurement. The day would be in the first column and the direction of the wind in the sixth column. Then you can do:
plot(A(:,1),A(:,6));
set(gca,'YLim',[0,360]); % Range of angles
set(gca,'XTickLabel',[]);
for ind=1:size(A,1),
text(A(ind,1),-25,num2str(A(ind,1)),'Rotation',45,'VerticalAlignment','middle','HorizontalAlignment','center');
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Time Series についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!