Azzera filtri
Azzera filtri

replacement of for loop in matlab

2 visualizzazioni (ultimi 30 giorni)
Khawaja Asim
Khawaja Asim il 15 Set 2011
for i=1:size(img,1)
for j=1:size(img,2)
if img(i,j)<=25
img(i,j)=255;
end
end
end
can anyone please tell me about the replacement of this piece of code in just one line..? I know it can be replaced with one line, but i am not able to it correctly....

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 15 Set 2011
img(img <= 25) = 255

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by