How do i remove rows that have a blank space in a cell array?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I've imported a spreadsheet from excel that has a roster and information on people. How do I remove people from a cell array that did not fill out the email field?
0 Commenti
Risposte (1)
Jos (10584)
il 3 Dic 2017
tf = cellfun(@isempty, C_email) % check each cell of the cell array holding the emails
C_people(tf) = [] % remove the cells in the cell array holding the people
0 Commenti
Vedere anche
Categorie
Scopri di più su Spreadsheets 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!