1- Use "save" to save any variable (including tables) in workspace. For example, save the table "T" in the file "savefile.mat".
T = array2table(rand(5,10));
save('savefile.mat', 'T')
2- For example, let say you would like to find the minimum in the second column and remove the related raw from the table:
T = array2table(rand(5,10));
T1 = T;
[~, minraw] = min(T1{:,2});
T1(minraw,:)=[];