MATLAB: How to delete rows in a table where table variable equals some integer

rowrow numberstable operationstablesvariables

How can I delete rows from a table where a variable in the table = 1(for example)?

Best Answer

if T is your table,
T(T.Variable == 1,:) = [];