Conversion error while plotting

EDU>> h1=plot(x,y,'ko','MarkerFaceColor','k'); Error using plot Conversion to double from cell is not possible.
Why?
(the picture shows the code as entered)

 Accepted Answer

change the cell to vector :
y=cell2mat(y);

More Answers (0)

Categories

Tags

Asked:

on 17 Jun 2014

Edited:

on 17 Jun 2014

Community Treasure Hunt

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

Start Hunting!