Basic Octave and MATLAB
This notes are valid for both Octave and MATLAB% for comments.
CALCULATOR
5+4
5-3
2*7
8/3
2^6
log(2)
exp(3)
abs(-1) %absolute value
floor(1.9) %round with cut to int (=1)
ceil(1.9) %round nearest int (=2)
LOGICS OPERATIONS
1 == 2 %returns...
massyfigini.hashnode.dev4 min read