How to remove certain elements from a struct array
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jorge Zorrilla Prieto
el 17 de Mayo de 2020
Comentada: Jorge Zorrilla Prieto
el 17 de Mayo de 2020
I have the following struct array:
Now, I want to remove the rows whose "SNR" field value is less than 150 having only the struct array with the rows that are over that value. Is that possible?
0 comentarios
Respuesta aceptada
Walter Roberson
el 17 de Mayo de 2020
mask = [Configuracion.SNR] >= 150;
Configuracion = Configuracion(mask);
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!