summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorveghp <31794642+veghp@users.noreply.github.com>2018-03-13 14:16:52 +0000
committerGitHub <noreply@github.com>2018-03-13 14:16:52 +0000
commit19f3a857fb3f5bd4d4250a0db895b91d0cea2531 (patch)
tree5820baf3d1a84c1034fafe64e68aca5cc4cadbe4
parenta8911cb7a5bc72d3d13c2b2696f9aa969289f6bc (diff)
Update matlab.html.markdown
-rw-r--r--matlab.html.markdown4
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