MATLAB: Plot specific columns from matrix

matrix plots

Hello Everyone , I have a matrix that is 2018X4 double and I need to create a scatter plot that uses column 2 as the X and column 1 as the Y. Is there a simple way to go about doing this?
Eric

Best Answer

You can use, scatter(A(:,1),A(:,2))
Where A is the matrix in question.
Related Question