How to make a plot in function of timetables expressed in UTC ?
5 views (last 30 days)
Show older comments
Hi everyone, I need to make a plot of the values in the third column in the file Dates.txt in function of the timetables UTC in AM in the second column, but I don't know how to manage with times in UTC in Matlab. Can someone help me? Thanks in advance
clc; clear all; close all;
B = load('Dates.txt');
Values = B(:,3);
time ?
plot(time,Values,'k')
xlabel('Julian Date')
ylabel('Values')
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!