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!