Index Non-Empty Cells in Cell Array
621 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
John F
am 28 Jun. 2012
Kommentiert: Serge Kogan
am 21 Okt. 2020
Hi,
I have the following cell array
TEST = [1] [] [] [] []
I want to get the index position of the non-empty cell. I know I can do this using a loop, but is there any single command (like "find") that will do this?
Thank you!
JF
0 Kommentare
Akzeptierte Antwort
Honglei Chen
am 28 Jun. 2012
Bearbeitet: Honglei Chen
am 28 Jun. 2012
x = {1,[],[],[]};
find(~cellfun(@isempty,x))
6 Kommentare
Serge Kogan
am 21 Okt. 2020
Md. Mubarak Hossain, You can get it by transposing the cell array a :
a={1 [] [];2 [] 4;5 6 []};
find(~cellfun(@isempty,a'))
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Structures finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!