how to find and replace corresponding matri
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
a1{:}
ans =
73.3333 50.0000
66.6667 50.0000
ans =
Empty matrix: 0-by-2
ans =
Empty matrix: 0-by-2
ans =
Empty matrix: 0-by-2
ans =
Empty matrix: 0-by-2
ans =
Empty matrix: 0-by-2
i need to find index for non zero cell array, and convert in into mat.
0 Commenti
Risposte (3)
Azzi Abdelmalek
il 19 Mag 2016
Modificato: Azzi Abdelmalek
il 19 Mag 2016
idx=celfun(@isempty,a1)
a1(idx)=[]
out=cell2mat(a1)
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrices and 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!