diff options
author | James Scott-Brown <james@jamesscottbrown.com> | 2013-09-18 18:08:31 +0100 |
---|---|---|
committer | James Scott-Brown <james@jamesscottbrown.com> | 2013-09-18 18:08:31 +0100 |
commit | c3fcedf70f1b607166be3e8ba64d0da25ccfddb0 (patch) | |
tree | 0a538faa50c9b61559004ced6c9339310a09ca43 | |
parent | 4ddcd660f8d08196c8628156d3e1bc0f1c785d97 (diff) |
Fix typo - misspelt 'receive'
-rw-r--r-- | matlab.html.markdown | 2 |
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 |