How to append time series?

6 次查看(过去 30 天)
Serbring
Serbring 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 CenterFile Exchange 中查找有关 Logical 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by