I have two 1-D cell arrays with numbers inside, how can I plot this?
X = {'1' '2' '35' }
Y = {'23' '30' '90' }
I am trying to plot the two cell arrays using plot command:
plot (X,Y);
And I received the following the error:
Not enough input arguments.
Any suggestions?
