Delete a row in a structure that contains a certain word
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AA
el 3 de Ag. de 2019
Respondida: Walter Roberson
el 3 de Ag. de 2019
Hi,
I have a 1×5897 struct array with fields. How do I delete the entire rows that contain the letters 'AA'.
3 comentarios
Respuesta aceptada
Walter Roberson
el 3 de Ag. de 2019
mask = ismember({Random.Letters}, 'AA') ;
Random(mask) = [] ;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!