Azzera filtri
Azzera filtri

question on cell array

2 visualizzazioni (ultimi 30 giorni)
jana
jana il 24 Gen 2014
Modificato: Image Analyst il 25 Gen 2014
I have a 2x2 cell array (this is just an example, I am dealing with a large matrix)
Sc{1,1} = [1,2];
Sc{1,2} = [1,3,4];
Sc{2,1} = [2,3];
S{2,2} = [2];
I want to count the number of elements in each cell and check if it is greater than 2 or not. for example: the number of elements in Sc{1,1} = 2 which is not grater than two. Similarly the number of elements in Sc{1,2} = 3 which is greater than two ad so on.
I dont know how to implement it. Please help!..I am fairly new to matlab!

Risposta accettata

Image Analyst
Image Analyst il 25 Gen 2014
Modificato: Image Analyst il 25 Gen 2014
Try this:
numArrayElements = cellfun(@numel, Sc) % Just FYI.
morethan2 = cellfun(@numel, Sc) > 2 % Logical array

Più risposte (0)

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!

Translated by