MATLAB: Plot some lines only

plot some lines

Hi all!
I have two columns with 38 lines. I want to plot these columns, but some lines only. I want to plot the lines 1:14 and 26:38. How can i do this? Thank you!

Best Answer

idx=[1:14 26:38]
plot(x(idx),y(idx))
Related Question