diff options
| author | Adam <adam@adambard.com> | 2015-12-04 14:46:48 +0700 | 
|---|---|---|
| committer | Adam <adam@adambard.com> | 2015-12-04 14:46:48 +0700 | 
| commit | 1b95655b3cb227e43aecbfd844763eda1a07957c (patch) | |
| tree | 932a8821271122fa93ac7d7a6560d7f61fd9b389 /matlab.html.markdown | |
| parent | 60b2f9dbdc9b658d2d96d3cb6c146b6e82245d9c (diff) | |
| parent | 3e0216bbcc30e98b57bd39b27bafc78ceb5cbe7e (diff) | |
t push origin masterMerge branch 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'matlab.html.markdown')
| -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 25f762bb..ddc0cb40 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -73,7 +73,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 @@ -279,7 +279,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 | 
