[~,~,rawdata] = xlsread('somefile');
rawdata is a cell array of 1311 x 14 cells. I want to access from second row to last row for a specified column.
like rawdata{2:,ith col} but it gives an error.
The end purpose I am trying to solve is to find NaN count for each column of a 2-D cell array imported from excel of heterogeneous format.
2:is not valid Matlab syntax, you need to specify where the vector should end. Also, are you using{and}like in the question, or(and)like in your comment?(is for arrays and function,{is for cell arrays.2:endgives you the second to the last element of a row/column of an array.