Conversion to double from timeseries is not possible.???

Can anyone explain what this means? I received this error when I tried plot3(x,y,z).

Answers (1)

There is a plot() routine for timeseries, but there is no plot3() routine for timeseries.
You can get() the Data property of a timeseries to get all of the data stored in it. For example,
plot3(get(x,'Data'), get(y,'Data'), get(z,'Data'))

Categories

Tags

Asked:

on 14 Nov 2013

Answered:

on 14 Nov 2013

Community Treasure Hunt

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

Start Hunting!