MATLAB: Delete rows from Cell Array

cell arraydelete rowsindex

I have a cell array as seen in the image. I want to delete the rows of the cell array where the first column is less than 3. Thanks.

Best Answer

mask = cell2mat(YourCell(:,1)) < 3;
YourCell(mask, :) = [];
Related Question