Running an if function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
AA
am 21 Jan. 2015
Kommentiert: Geoff Hayes
am 21 Jan. 2015
Hi, I want to run an If function. So if x<3 then I want function "Runningwater" to be executed. How can I implement this as code?
thanks guys
0 Kommentare
Akzeptierte Antwort
Geoff Hayes
am 21 Jan. 2015
if x < 3
Running water;
end
2 Kommentare
Geoff Hayes
am 21 Jan. 2015
The double ampersand is used for and, and the double pipe for or. For the and, you would do
if x<3 && y>4
Runningwater;
end
For the or, you would do
if x<3 || y>4
Runningwater;
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dynamic System Models 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!