MATLAB: How to call a column of data from excel into matlab

importing excel data

I need to take the mean median and mode from a column of data in excel
first i tried using fopen filename but i keep getting back -1
xlsread RealEstate.xls ??? Error using ==> xlsread at 214 XLSREAD unable to open file RealEstate.xls. File C:\Program Files\Dell\DellDock\RealEstate.xls not found.

Best Answer

yourdata = xlsread(your file name);
then you can process it
help mean
help xlsread
help importfile
Related Question