Find and replacing elements in cell array
87 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a 1x10 cell which is generated using a loop. I would like to check each cell array (ex: F{1,1}, F{1,2}) for a specific numerical number and then replace those numbers by zero. How can I do that?
0 Kommentare
Akzeptierte Antwort
Fiction
am 3 Jun. 2015
Bearbeitet: Fiction
am 3 Jun. 2015
Assuming your cell is made up of vectors. Every cell{i} is a numerical vector itself.
this code should work:
for i=1:10
a=cell{i};
for j=1:length(a)
if a(j)==1||a(j)>25 %(example conditions put your own)
a(j)=0;
end
cell{i}=a;
end
end
Hope it helps.
PS. this also does it without using double loop:
for i=1:10
a=cell{i};
ind=find(a==1|a>25) %(example conditions put your own)
a(ind)=0
cell{i}=a;
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!