IF Condition in Wolfram Mathematica
The syntax is as follows
xxxxxxxxxxIf[condition, what to do if true, what to do if false]Some examples
Example 1. Simple command
x
x = -3;If[x<0, -x, x]3Example 2. If condition in a function
abs[x_]:=If[x<0, -x, x]abs/@{-3, 2, 0, -2}{3, 2, 0, 2}
For in Wolfram Mathematica
The syntax is as follows
For[start, test, inc, what to do]Some examples
Example 1. Simple Loop
xxxxxxxxxxFor[i=0, i<4, i++, Print[i]]0123Example 2. Another simple loop
For[i=10, i>0, i--, Print[i]]10987654321Example 3. Print list
a={10, 3, 9, 2}For[i=1,i<5,i++,Print[a[[i]]]]10392
Comments