MATLAB Octave: Difference between revisions
Jump to navigation
Jump to search
(→Usage) |
|||
Line 14: | Line 14: | ||
MATLAB only supports single quotes. Octave can be run in --traditional mode. | MATLAB only supports single quotes. Octave can be run in --traditional mode. | ||
=Concepts= | |||
Variables: local and global. | |||
=Usage= | =Usage= |
Revision as of 17:03, 20 December 2017
External
- 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/SFKpu/programming-tips-from-mentors
Installation
Differences between Octave and MATLAB
MATLAB only supports single quotes. Octave can be run in --traditional mode.
Concepts
Variables: local and global.
Usage
Linux commands:
cd - modify the current directory.
pwd - print working directory.
Interpreter Commands:
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.