summaryrefslogtreecommitdiffhomepage
path: root/matlab.html.markdown
diff options
context:
space:
mode:
authorJames Scott-Brown <james@jamesscottbrown.com>2013-09-18 18:08:31 +0100
committerJames Scott-Brown <james@jamesscottbrown.com>2013-09-18 18:08:31 +0100
commitc3fcedf70f1b607166be3e8ba64d0da25ccfddb0 (patch)
tree0a538faa50c9b61559004ced6c9339310a09ca43 /matlab.html.markdown
parent4ddcd660f8d08196c8628156d3e1bc0f1c785d97 (diff)
Fix typo - misspelt 'receive'
Diffstat (limited to 'matlab.html.markdown')
-rw-r--r--matlab.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/matlab.html.markdown b/matlab.html.markdown
index b8e552e2..15ff2303 100644
--- a/matlab.html.markdown
+++ b/matlab.html.markdown
@@ -68,7 +68,7 @@ load('myFile.mat', 'y')
% Command syntax:
load myFile.mat y % no parentheses, and spaces instead of commas
% Note the lack of quote marks in command form: inputs are always passed as
-% literal text - cannot pass variable values. Also, can't reveive output:
+% literal text - cannot pass variable values. Also, can't receive output:
[V,D] = eig(A) % this has no equivalent in command form