Effacer les filtres
Effacer les filtres

length of arrey in cell and remove 0

2 vues (au cours des 30 derniers jours)
NA
NA le 21 Avr 2019
Modifié(e) : madhan ravi le 21 Avr 2019
A={[113],[112],[42],[29],[113],[69],[86],[0],[0]};
B={[18],[14],[5],[39],[27],[11],[9],[0],[0]};
C=cellfun(@(m,u) length(m)+length(u),A, B, 'uni',0);
as 2 last element in both A and B is 0
I want to have this result
C={[2],[2],[2],[2],[2],[2],[2],[0],[0]}

Réponse acceptée

madhan ravi
madhan ravi le 21 Avr 2019
Modifié(e) : madhan ravi le 21 Avr 2019
A(cell2mat(A)==0)={[]}; % assuming each cell is scalar
B(cell2mat(B)==0)={[]};
C=cellfun(@(m,u) numel(m)+numel(u),A, B, 'un',0)

Plus de réponses (0)

Catégories

En savoir plus sur 3-D Scene Control dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by