diff options
| -rw-r--r-- | matlab.html.markdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/matlab.html.markdown b/matlab.html.markdown index 3b96d08e..b88b1c03 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -374,8 +374,8 @@ disp('Hello World') % Print out a string  fprintf % Print to Command Window with more control  % Conditional statements (the parentheses are optional, but good style) -if (a > 15) -	disp('Greater than 15') +if (a > 23) +	disp('Greater than 23')  elseif (a == 23)  	disp('a is 23')  else | 
