Eliminate certain entries of cell array
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a 1x73 cell array, FR, and I would like to eliminate FR {8, 17, 31, 41, 43, 47, 49, 56, 60, 66, 73} and re-save as a 1x62 cell array. How can I do this?
2 Commenti
Risposta accettata
KSSV
il 27 Mag 2020
If C is your cell array and FR has the indices of cells which are to be removed, use:
C(FR) = []
0 Commenti
Più risposte (1)
Fangjun Jiang
il 27 Mag 2020
Would it possible to make it array?
a=1:5;
b=1:3;
a=setdiff(a,b)
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!