MATLAB: Plot two different rows in x and y

plot

I have a Matrix 2×15. I want to plot row 1 in the x-axis and row 2 in the y-axis. How can I do?

Best Answer

plot(a(1,:),a(2,:))
Related Question