Filter löschen
Filter löschen

If statement with an greater than comparison

103 Ansichten (letzte 30 Tage)
James
James am 6 Okt. 2014
Kommentiert: José-Luis am 6 Okt. 2014
Hi,
I am trying to write an "if" statement between 2 values. I have a value "A" and a value "B". I want to set C to the value of A or B that is larger.
So like if A>B then C=A, otherwise C=B.
I am having trouble getting the proper code for this in matlab though.
Thanks

Akzeptierte Antwort

Guillaume
Guillaume am 6 Okt. 2014
It's pretty much what you've written:
if A > B
C = A;
else
C = B;
end

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays 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!

Translated by