converting from timeseries to double

for j=1:Nf
omega1=omega(j);
sim('csm');
DF = (DFreal+sqrt(-1)*DFimag);
s(j,:)=DF;
array(1,1,j,:)=DF;
end
: Conversion to double from timeseries is not possible. Error in rel (line 10) s(j,:)=DF;

 Accepted Answer

Birdman
Birdman on 2 Mar 2018
I assume you are saving data from your simulation by using To Workspace block. I suggest you to change your Save format to Array so that you will obtain your data in numeric type.

7 Comments

It worked, Thank You.
I came across this after going through a lot of google links.
it worked. Thanks Birdman
This helped alot, easy fix, thanks alot Birdman
Thank you so much! Helped a lot
Yup, solved my problem. Thanks

Sign in to comment.

Categories

Community Treasure Hunt

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

Start Hunting!