diff options
author | Navdeep Singh <navdeepsaini48@gmail.com> | 2015-10-25 02:39:50 +0530 |
---|---|---|
committer | Navdeep Singh <navdeepsaini48@gmail.com> | 2015-10-25 02:39:50 +0530 |
commit | 4e32ff9cd9dabe634f40191f8cee82787ea9e918 (patch) | |
tree | 1d42d058a4f2f37e9f3f12ba30bb03fceb8019c6 | |
parent | 4724022a4c40dff54e27b1b42addbe46bf1d9d65 (diff) |
fixed typo mistakes
-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 4d97834c..e8a6cc0b 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -72,7 +72,7 @@ c = exp(a)*sin(pi/2) % c = 7.3891 % Calling functions can be done in either of two ways: % Standard function syntax: -load('myFile.mat', 'y') % arguments within parantheses, spererated by commas +load('myFile.mat', 'y') % arguments within parentheses, separated by commas % 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 @@ -273,7 +273,7 @@ clf clear % clear current figure window, and reset most figure properties % Properties can be set and changed through a figure handle. % You can save a handle to a figure when you create it. -% The function gcf returns a handle to the current figure +% The function get returns a handle to the current figure h = plot(x, y); % you can save a handle to a figure when you create it set(h, 'Color', 'r') % 'y' yellow; 'm' magenta, 'c' cyan, 'r' red, 'g' green, 'b' blue, 'w' white, 'k' black |