MATLAB: Delete a row in a structure that contains a certain word

delete row structure

Hi,
I have a 1×5897 struct array with fields. How do I delete the entire rows that contain the letters 'AA'.

Best Answer

mask = ismember({Random.Letters}, 'AA') ;
Random(mask) = [] ;
Related Question