Using for loop for plotting from a timetable?

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

 채택된 답변

Walter Roberson
Walter Roberson 2017년 12월 23일
편집: Walter Roberson 2017년 12월 23일

0 개 추천

plot(TT2.Date, TT2{:,ii})
... and remember the "hold on"

추가 답변 (1개)

Peter Perkins
Peter Perkins 2017년 12월 28일

0 개 추천

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

Hydro
Hydro 2017년 12월 28일
Thanks Peter. There are a number of variables (~10). It would be very inconvenient to plot them one by one, that's why I want to use the loop to automate the plotting.
You only think you want a loop. This
plot(TT2.Date,TT2{:,1:2})
plots them both at once, without a loop.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2017년 12월 23일

댓글:

2018년 1월 5일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by