已回答 Delete rows with characters in cell array
gnovice gave me this awesome code:
index = ~any(cellfun(@any, isstrprop(C, 'alpha')), 2);
C = C(index, :)
Thanks guys an...
已回答 Auto fill zero matrix without row-repetitions
Thanks a lot for your suggestions. However, I made a minor mistake. I want the final matrix to be a 3x5 instead of a 5x3 matrix....