MATLAB: Matrix

matrix

I have loaded in a 5×11827 matrix. How to i assign the data from 880 column onwards to a variable x??
x=data(:,880);
i am getting only the 880th column data

Best Answer

x=data(:,880:end);