Using for loop for plotting from a timetable?
1 回表示 (過去 30 日間)
古いコメントを表示
Attached is a sample of my data that I would like to plot. I would like to use for loop to automate plotting from the timetable directly. Below is my code, however, it seems there is some problem. any thoughts would be appreciated. I would also like to get a handle to enhance the plot further.
for ii=1:2
plot(TT2.Date,TT2.(:,ii))
end
0 件のコメント
採用された回答
Walter Roberson
2017 年 12 月 23 日
編集済み: Walter Roberson
2017 年 12 月 23 日
plot(TT2.Date, TT2{:,ii})
... and remember the "hold on"
0 件のコメント
その他の回答 (1 件)
Peter Perkins
2017 年 12 月 28 日
I imagine that
plot(TT2.Date,TT2{:,1:2})
would also work. And if there's only two variables in your timetable, that's equivalent to
plot(TT2.Date,TT2.Variables)
where "Variables" is the default name to use, but it's whatever TT2.Properties.DimensionNames{2} is set to.
2 件のコメント
Peter Perkins
2018 年 1 月 5 日
You only think you want a loop. This
plot(TT2.Date,TT2{:,1:2})
plots them both at once, without a loop.
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!