MATLAB: How to plot certain columns and rows from matrix

arraylinearMATLABmatrixplottablevectorxy

if I have a matrix that is 33×120, how would you plot the first 3 rows vs. columns 25-35?
I'm having trouble figuring out how to come out with the coding
thanks

Best Answer

Let A your matrix with size 33 x 120
plot(A(1:3,25:35)')
Related Question