1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
<html lang="en">
<head>
<title>The @code{if} Statement - Untitled</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Untitled">
<meta name="generator" content="makeinfo 4.11">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Statements.html#Statements" title="Statements">
<link rel="next" href="The-_0040code_007bswitch_007d-Statement.html#The-_0040code_007bswitch_007d-Statement" title="The @code{switch} Statement">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="The-%3ccode%3eif%3c%2fcode%3e-Statement"></a>
<a name="The-_003ccode_003eif_003c_002fcode_003e-Statement"></a>
Next: <a rel="next" accesskey="n" href="The-_003ccode_003eswitch_003c_002fcode_003e-Statement.html#The-_003ccode_003eswitch_003c_002fcode_003e-Statement">The <code>switch</code> Statement</a>,
Up: <a rel="up" accesskey="u" href="Statements.html#Statements">Statements</a>
<hr>
</div>
<h3 class="section">10.1 The <code>if</code> Statement</h3>
<p><a name="index-g_t_0040code_007bif_007d-statement-556"></a><a name="index-g_t_0040code_007belse_007d-statement-557"></a><a name="index-g_t_0040code_007belseif_007d-statement-558"></a><a name="index-g_t_0040code_007bendif_007d-statement-559"></a>
The <code>if</code> statement is Octave's decision-making statement. There
are three basic forms of an <code>if</code> statement. In its simplest form,
it looks like this:
<pre class="example"> if (<var>condition</var>)
<var>then-body</var>
endif
</pre>
<p class="noindent"><var>condition</var> is an expression that controls what the rest of the
statement will do. The <var>then-body</var> is executed only if
<var>condition</var> is true.
<p>The condition in an <code>if</code> statement is considered true if its value
is non-zero, and false if its value is zero. If the value of the
conditional expression in an <code>if</code> statement is a vector or a
matrix, it is considered true only if it is non-empty and <em>all</em>
of the elements are non-zero.
<p>The second form of an if statement looks like this:
<pre class="example"> if (<var>condition</var>)
<var>then-body</var>
else
<var>else-body</var>
endif
</pre>
<p class="noindent">If <var>condition</var> is true, <var>then-body</var> is executed; otherwise,
<var>else-body</var> is executed.
<p>Here is an example:
<pre class="example"> if (rem (x, 2) == 0)
printf ("x is even\n");
else
printf ("x is odd\n");
endif
</pre>
<p>In this example, if the expression <code>rem (x, 2) == 0</code> is true (that
is, the value of <code>x</code> is divisible by 2), then the first
<code>printf</code> statement is evaluated, otherwise the second <code>printf</code>
statement is evaluated.
<p>The third and most general form of the <code>if</code> statement allows
multiple decisions to be combined in a single statement. It looks like
this:
<pre class="example"> if (<var>condition</var>)
<var>then-body</var>
elseif (<var>condition</var>)
<var>elseif-body</var>
else
<var>else-body</var>
endif
</pre>
<p class="noindent">Any number of <code>elseif</code> clauses may appear. Each condition is
tested in turn, and if one is found to be true, its corresponding
<var>body</var> is executed. If none of the conditions are true and the
<code>else</code> clause is present, its body is executed. Only one
<code>else</code> clause may appear, and it must be the last part of the
statement.
<p>In the following example, if the first condition is true (that is, the
value of <code>x</code> is divisible by 2), then the first <code>printf</code>
statement is executed. If it is false, then the second condition is
tested, and if it is true (that is, the value of <code>x</code> is divisible
by 3), then the second <code>printf</code> statement is executed. Otherwise,
the third <code>printf</code> statement is performed.
<pre class="example"> if (rem (x, 2) == 0)
printf ("x is even\n");
elseif (rem (x, 3) == 0)
printf ("x is odd and divisible by 3\n");
else
printf ("x is odd\n");
endif
</pre>
<p>Note that the <code>elseif</code> keyword must not be spelled <code>else if</code>,
as is allowed in Fortran. If it is, the space between the <code>else</code>
and <code>if</code> will tell Octave to treat this as a new <code>if</code>
statement within another <code>if</code> statement's <code>else</code> clause. For
example, if you write
<pre class="example"> if (<var>c1</var>)
<var>body-1</var>
else if (<var>c2</var>)
<var>body-2</var>
endif
</pre>
<p class="noindent">Octave will expect additional input to complete the first <code>if</code>
statement. If you are using Octave interactively, it will continue to
prompt you for additional input. If Octave is reading this input from a
file, it may complain about missing or mismatched <code>end</code> statements,
or, if you have not used the more specific <code>end</code> statements
(<code>endif</code>, <code>endfor</code>, etc.), it may simply produce incorrect
results, without producing any warning messages.
<p>It is much easier to see the error if we rewrite the statements above
like this,
<pre class="example"> if (<var>c1</var>)
<var>body-1</var>
else
if (<var>c2</var>)
<var>body-2</var>
endif
</pre>
<p class="noindent">using the indentation to show how Octave groups the statements.
See <a href="Functions-and-Scripts.html#Functions-and-Scripts">Functions and Scripts</a>.
</body></html>
|