How can I retrieve data from cdfepoch objects into datetime ?
4 views (last 30 days)
Show older comments
I am working on some data with the following formatting:
I am trying to plot some of the data like Column 7 over a certain time period which is the data contained in Column 2 cdfepoch object. I need some help storing the contents of column 2 into a variable as datetime elements. Thank you
2 Comments
Answers (2)
Soniya Jain
on 16 Feb 2023
Hi,
You can refer to the following documentation to create a "datetime" array:
https://in.mathworks.com/help/matlab/ref/datetime.html
You can also refer to the following documentation to plot date and time data:
https://in.mathworks.com/help/matlab/matlab_prog/plot-dates-and-durations.html
0 Comments
Lei Hou
on 24 Mar 2023
Hi,
Try this
data = cdfread('yourfile.cdf', 'DatetimeType', 'datetime');
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!