diff options
author | veghp <31794642+veghp@users.noreply.github.com> | 2018-03-13 14:11:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 14:11:43 +0000 |
commit | a8911cb7a5bc72d3d13c2b2696f9aa969289f6bc (patch) | |
tree | de783ed3e4f1cae9d5e9b722116569924654f0c9 | |
parent | 35cfeef957f77eddd55328d9aef100ad5240619c (diff) |
Update matlab.html.markdown
-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 6dc9f697..3b96d08e 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -545,7 +545,7 @@ ans = multiplyLatBy(a,3) % The method can also be called using dot notation. In this case, the object % does not need to be passed to the method. -ans = a.multiplyLatBy(a,1/3) +ans = a.multiplyLatBy(1/3) % Matlab functions can be overloaded to handle objects. % In the method above, we have overloaded how Matlab handles |