MATLAB: How can i plot time series data from CSV

csvplottimeseries

I have a set of time seris data (attachment). how can I plot it in Matlab?

Best Answer

This works:
[d,s,r] = xlsread('temp.csv');
t = d(:,1);
v = d(:,2);
figure(1)
plot(t, v);
grid
xlabel('Time')
ylabel('Value')