how to delete rows from a struct array?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hello folks I have this struct array as shown bellow i'd like to delete all the rows where class is not 'double', so i'm wondering how to ? anyone can help !!!
![Sans titre.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/207424/Sans%20titre.png)
0 comentarios
Respuestas (1)
Bob Thompson
el 7 de Mzo. de 2019
vars = vars([vars.class] == 'double');
This may not work exactly (I think you might need to use strcmp instead of ==, but it should get you going.
0 comentarios
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!