X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=blobdiff_plain;f=misc%2Fodd.m;h=c754a12a8a39e6b83c266e61831c6b1074402ee4;hp=b0bc6267be4db4e29615e2d6915353a018b4e4c6;hb=b12c6c2a4bf4cef29b2e08b743c92889505c7ed9;hpb=e1b71b4ca7cfa08ac76744a17a3778d4ccfaa7e2 diff --git a/misc/odd.m b/misc/odd.m index b0bc626..c754a12 100644 --- a/misc/odd.m +++ b/misc/odd.m @@ -1,15 +1,15 @@ function odd = odd(integer_n) - ## Returns true if its argument is odd; false otherwise. - ## - ## INPUTS: - ## - ## * ``integer_n`` - The integer whose parity you're determining. - ## - ## - ## OUTPUTS: - ## - ## * ``odd`` - True if `integer_n` is odd, false otherwise. - ## - + % Returns true if its argument is odd; false otherwise. + % + % INPUTS: + % + % * ``integer_n`` - The integer whose parity you're determining. + % + % + % OUTPUTS: + % + % * ``odd`` - True if `integer_n` is odd, false otherwise. + % + odd = !even(integer_n); end