How can i plot time series data from CSV
5 ビュー (過去 30 日間)
古いコメントを表示
I have a set of time seris data (attachment). how can I plot it in Matlab?
0 件のコメント
採用された回答
Star Strider
2016 年 6 月 1 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Time Series Events についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!