From: <tr...@us...> - 2012-04-14 10:29:26
|
Revision: 10214 http://octave.svn.sourceforge.net/octave/?rev=10214&view=rev Author: treichl Date: 2012-04-14 10:29:20 +0000 (Sat, 14 Apr 2012) Log Message: ----------- Fixed short-circuit operator. Modified Paths: -------------- trunk/octave-forge/main/odepkg/inst/odepkg_examples_ode.m Modified: trunk/octave-forge/main/odepkg/inst/odepkg_examples_ode.m =================================================================== --- trunk/octave-forge/main/odepkg/inst/odepkg_examples_ode.m 2012-04-13 12:31:39 UTC (rev 10213) +++ trunk/octave-forge/main/odepkg/inst/odepkg_examples_ode.m 2012-04-14 10:29:20 UTC (rev 10214) @@ -41,7 +41,7 @@ ' your patch with your added example to the OdePkg developer team.\n', ... '\n' ]); vode = input ('Please choose a number from above or press <Enter> to return: '); - clc; if (vode > 0 & vode < 6) + clc; if (vode > 0 && vode < 6) %# We can't use the function 'demo' directly here because it does %# not allow to run other functions within a demo. vexa = example (mfilename (), vode); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |