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

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

Answers (1)

Walter Roberson
Walter Roberson on 14 Nov 2013
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

Find more on Time Series in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!