MATLAB: Plot cell array starting from the second element

cell arrayMATLAB

wave.JPG
As reported into the image, i have a 356×1 cell named wave_heights.
How can I plot the elements of the cell starting form the second one?

Best Answer

hi, use below code to extract cell from 2 and plot.
cell_extra = a(2:end);
plot(cell_extra);
Related Question