How to append time series?

6 ビュー (過去 30 日間)
Serbring
Serbring 2021 年 9 月 18 日
コメント済み: Image Analyst 2021 年 9 月 18 日
Hi all,
I need to append several timeseries object but I am obtain the following error:
Error using timeseries/append>localConcat (line 57)
The time vectors of the specified time series must be consecutive.
I do not understand what is wrong with the code reported below since the time vector is consecutive and there are no repetitive time. Can you help me?
PrescriptionMap(:,1)=[0 10 30 60 65 85 100];
PrescriptionMap(:,2)=randi([5 40],1,length(PrescriptionMap(:,1)));
PrescriptionMap(:,3)=PrescriptionMap(:,1)/Speed;
for i=1:length(PrescriptionMap(:,1))-1
InputStair(i)=frest.createStep('StepTime',PrescriptionMap(i,1)/Speed,'StepSize',PrescriptionMap(i,1),'FinalTime',PrescriptionMap(i+1)-1)/Speed);
end
InputStairSum=append(InputStair(1),InputStair(2));
Morever, can I transform the data into a double array?
Thank you so much.
Best regards,
Michele
  1 件のコメント
Image Analyst
Image Analyst 2021 年 9 月 18 日
You didn't give the whole error message, namely the line of code that threw the error (line 57). I have no idea which of the lines in that extracted snippet is line 57.
Also, what is frest.createStep?
And the help says append() concatenates strings, not time series variables.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by