필터 지우기
필터 지우기

How do I extract specific data from a time series?

조회 수: 9 (최근 30일)
Varun Jadhav
Varun Jadhav 2016년 1월 5일
댓글: Varun Jadhav 2016년 1월 6일
I have a time series with dimensions 10001x3 from which I need to extract samples from 2001:7001. I tried ts(2001,1):ts(7001,1), & similarly for other 2 columns, but I get a 1-by-0 matrix. Is there any other way to extract data??? Please help.

채택된 답변

Bob
Bob 2016년 1월 5일
t=zeros(10001,3);
T1=[t(2001:7001,1)];
T2=[t(2001:7001,2)];
T3=[t(2001:7001,3)];

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Time Series에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by