Recursive version of isempty() for cells and structures
Matlab's isempty() returns false for a structured variable that contains one or more fields. In some circumstances, however, a structured variable may have been initialised with empty fields to be populated later; in this case, we might want to consider the structure to be empty if the fields themselves are empty.
isemptyr() tests for this condition by recursively checking the fields of a structured variable, returning true if only empty fields are found.
Similarly, for cell arrays, Matlab's isempty() returns false if the array contains one or more cells, even if they are empty. isemptyr(), in contrast, searches the cell array recursively, returning true if only empty cells are found.
isemptyr() works just like Matlab's isempty() for normal arrays and strings.
Citar como
Kevin Bartlett (2025). Recursive version of isempty() for cells and structures (https://es.mathworks.com/matlabcentral/fileexchange/33030-recursive-version-of-isempty-for-cells-and-structures), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- MATLAB > Language Fundamentals > Data Types > Structures >
- MATLAB > Language Fundamentals > Data Types > Cell Arrays >
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
| Versión | Publicado | Notas de la versión | |
|---|---|---|---|
| 1.0.0.0 |
