Info

This question is closed. Reopen it to edit or answer.

I have a cell matrix which has 8 columns. The 3rd column contains the data I want to plot on y-axis and the 8th column contains the date time series which I want to plot on the z-axis. How can I plot this?

1 view (last 30 days)
C= cell matrix with 8 columns
I want a plot (x,y) as datetime on x-axis and the data on y-axis

Answers (1)

Ameer Hamza
Ameer Hamza on 12 May 2018
Try this
plot([C{:,8}], [C{:,3}])

Community Treasure Hunt

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

Start Hunting!