MATLAB: How to delete a row of numbers in which the number in the first column is less than a threshold

columndata filedeletefilematrixremoverowtext;vector

How can I delete a row of numbers in which the number in the first column is less than a threshold?

Best Answer

glass half empty
X(X(:,1)<10,:) = [];
glass half full
Y = X(X(:,1)>=10,:);