Filter löschen
Filter löschen

how to use "or"

1 Ansicht (letzte 30 Tage)
Max Müller
Max Müller am 5 Aug. 2014
Beantwortet: Andrei Bobrov am 5 Aug. 2014
Can u pls tell me what is wrong ( just an example) How do i use the or command ?
for i = 1:100
if i == 2|5
disp('hallo')
end
end

Akzeptierte Antwort

the cyclist
the cyclist am 5 Aug. 2014
for i = 1:100
if (i == 2)|(i == 5)
disp('hallo')
end
end

Weitere Antworten (1)

Andrei Bobrov
Andrei Bobrov am 5 Aug. 2014
for ii = 1:100
if ii == 2 || ii == 5
ii
disp('hallo')
end
end
or
for ii = 1:100
if ismember(ii,[2,5])
disp('hallo'),ii
end
end

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by