How can i plot time series data from CSV

5 visualizzazioni (ultimi 30 giorni)
I have a set of time seris data (attachment). how can I plot it in Matlab?

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Time Series Events in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by