MATLAB Octave: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
=External=


* https://www.gnu.org/software/octave/
* https://www.gnu.org/software/octave/doc/interpreter/
* https://www.gnu.org/software/octave/doc/interpreter/
* https://www.coursera.org/learn/machine-learning/supplement/Mlf3e/more-octave-matlab-resources
* https://www.coursera.org/learn/machine-learning/supplement/Mlf3e/more-octave-matlab-resources
* https://www.coursera.org/learn/machine-learning/supplement/SFKpu/programming-tips-from-mentors
* https://www.coursera.org/learn/machine-learning/supplement/SFKpu/programming-tips-from-mentors
* http://www.mathworks.com/help/matlab/
* R/MATLAB comparison http://www.math.umaine.edu/~hiebeler/comp/matlabR.html


=Subjects=
=Internal=


* [[MATLAB Octave Installation|Installation]]
* [[Machine Learning]]
* [[MATLAB Octave Concepts|Concepts]]
* [[R]]


=Usage=
=Differences between Octave and MATLAB=


Linux commands:
{{External|https://en.wikibooks.org/wiki/MATLAB_Programming/Differences_between_Octave_and_MATLAB}}


'''cd''' - modify the current directory.
MATLAB only supports single quotes. Octave can be run in --traditional mode.


'''pwd''' - print working directory.
=Subjects=


Interpreter Commands:
* [[MATLAB Octave Installation|Installation]]
 
* [[MATLAB Octave Concepts|Concepts]]
'''clear''' - delete the names matching the pattern from the ''symbol table''. The pattern is a simplified regular expression, with '?', '*', '[...]'. With no arguments, all user-define variables (local and global) are deleted.
* [[MATLAB Octave CLI|CLI]]
 
'''close''' - close figure windows.
 
'''clc''' - clears the terminal screen and move the cursor to the upper left corner.
 
<span id='printf'></span>'''printf''' - Also see [[printf|Generic printf]].
 
'''fprintf''' - like [[#printf|printf]], just that the output is written to the FID stream instead of stdout.


'''load''' - load the named variables from the file. If no variables are named, all variables found in the file will be loaded.
=Recipes=

Latest revision as of 08:20, 28 December 2017