1x1 datetime cells into plot
4 views (last 30 days)
Show older comments
Ercan
on 21 Oct 2022
Commented: Walter Roberson
on 21 Oct 2022
Hey guys!
I've got a 30224x1 cell data of time which shows as "1x1 datetime" in cells when I import them.
However, I can not able to plot them.
Could anyone help me to do it properly?
0 Comments
Accepted Answer
Walter Roberson
on 21 Oct 2022
Thethis_Time = [yourCell{:}];
No need to convert to datenum.
2 Comments
Walter Roberson
on 21 Oct 2022
Either
Thethis_Time = [yourCell{:}] .';
or
Thethis_Time = vertcat(yourCell{:});
More Answers (1)
David Hill
on 21 Oct 2022
Convert to datenum to plot.
for k=1:length(yourCell)
t(k)=datenum(yourCell{k});
end
2 Comments
See Also
Categories
Find more on Dates and Time in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!