A bit of background~
I'm using a wii mote to collect accelerometer data, and have the data exported to an excel document.
This data is then imported into MATLAB using :
a = xlsread(fileName); %reads in file name
x = a(:, xColNum); %time
y1 = a(:, y1ColNum); %accel value x
y2...