How can I remove empty arrays of cell
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Farshid Daryabor
il 16 Apr 2020
Commentato: Stephen23
il 16 Apr 2020
please find attached file, how can I remove empty row of cell arrays. Thanks in advance,
2 Commenti
Risposta accettata
Ameer Hamza
il 16 Apr 2020
Run this
idx = cellfun(@(x) isempty(x), time);
time(idx) = [];
2 Commenti
Stephen23
il 16 Apr 2020
No need for an anonymous function:
idx = cellfun(@isempty, time);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Cell Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!