Docs: MATLAB Help Center
Table Related
How to filter a table
theTable(theTable.VariableName == 0, :);
returns a table that contains every row in theTable
whose VariableName == 0
.
Remove Rows from Table
This removes rows with row id 3,5,7 from the table.
table([3,5,7],:)=[];