Releases: lmendo/MATL
Releases · lmendo/MATL
6.0.0
- Input can now be implicit. Implicit input is numeric (evaluated). It's triggered by any statement that tries to access elements below the bottom of the stack. See specification document for examples.
- Complex numbers were not displayed properly in Octave (only their real part was); now they are.
- Removed unrecognized tags when displaying error messages in Octave and old Matlab versions.
- Removed
rng
function and its predefined literals. - Added predefined literal: '%.16g '
im2col
now allows a scalar n as second input, which gets transformed into [1 n] or [n 1]
5.1.0: Expanded some functions. Better compatibility with Octave
- Modifications in the compiler for compatibility with Octave
- More consistent behaviour of the
im2col
function in MATLAB and in Octave - New section in the specification document about Octave compatibility
bitand
,bitor
,bitxor
,lcm
,gcd
now with singleton expansion- Online help format compatible with Octave and with Matlab versions older than 7.13
5.0.0
4.1.1: Updated spec
Updated the Fibonacci example in the document to include implicit loop closing
4.1.0
4.0.0
- Added
im2col
function. - Added
sign
function - Added
randperm
with 3 outputs. Third output specifies number of permutations - Added
gallery
function and corresponding predefined literals. This function also includesmagic
,hilb
,invhilb
,hadamard
,pascal
,spiral
- Renamed
std
function. - Removed functions:
cell
(can be easily substituted),spiral
(included in newgallery
function)
3.1.0
3.0.0
blanks
function added.regexp
with two inputs now uses option'match'
by default.- Functions renamed:
pdist2
,polyval
,pi
,std
,str2double
,str2num
,num2str
,cumsum
. Sorry to renamepi
again. The name and its shothand within literals is now more coherent withinf
andNaN
. - Functions removed:
pdist
,squareform
. - Functions added:
flipud
,sum(..., 1, ...)
. - Predefined literals added:
['Mon';'Tue';'Wed';'Thu';'Fri';'Sat';'Sun']
,[298 302 288 305 289 296 310]
. - Improved compatibility with old Matlab versions.