MATLAB: I have data in multiple excel sheets. How to import only certain columns only and plot the data.

import certain columns from excel sheet

I have multiple excel files in a folder. I would like to import only certain columns from those files and plot those columns in one single graph.

Best Answer

range='B:C' % column B and C
xlsread('file.xlsx',range)
Related Question