Generating a vector containing the sizes of all cells of a cell array, along a specific dimension
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Paolo Binetti
il 25 Gen 2017
Commentato: Paolo Binetti
il 26 Gen 2017
Is there a way to vectorize this? (I tried with "cellfun", but did not succeed).
for i = 1:numel(a)
s(i) = size(a{i}, 1);
end
Where a sample of "a" is provided in attachment.
2 Commenti
the cyclist
il 25 Gen 2017
Modificato: the cyclist
il 25 Gen 2017
It would be much easier to help if you posted code that actually creates a small example of a, rather than pseudocode that illustrates what you mean.
Is
AGA
AGA
meant to represent a 2x3 character array? So, is it correct that
a{1,1} = ['AGA';'AGA'];
would be an example of one element? It seems like that's what you mean, but wanted to be sure.
Risposta accettata
the cyclist
il 25 Gen 2017
Modificato: the cyclist
il 25 Gen 2017
Does this give what you want?
s = cellfun(@(x)size(x,1),a);
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!