Bar plot for (No of observation per day) vs time?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi everyone,
How can I plot Number of observation s4>=0.2 vs time;
data=xlsread('1608_1.xls');
data_filterr=find(data(:,25)>60);
data_filtered=data(data_filterr,:);
elev_cutof20=find(data_filtered(:,6)>=15);
data_cutoff15=data_filtered(elev_cutof20,:);
r=data_cutoff15(:,2);
time=((r./3600)-24*1);
s4r=data_cutoff15(:,8);
s4cor=data_cutoff15(:,9);
s4=sqrt(s4r.^2-s4cor.^2);
1 件のコメント
Mahdi
2013 年 3 月 25 日
I'm not sure of what you're asking, but I think the bar function might help you.
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Bar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!