[986.18 kB]
OS-independent binary for Scilab 6.0.x
CHANGES (2.5) => 2.6
--------------------
* Created new classification functions :
glmfit
glmval
glmlikelihood
* Removed bugged and undocumented lsselect.
Technically replaced by the more powerful stepwiselm.
* Created new functions :
criterionAkaike
criterionBayesian
polymultiindex
stepwiselm
stepwiselm_generate
stepwiselm_print
* Fixed bug #1665 : boxcoxinverse now produce
histo failed when the sample is constant and zero.
CHANGES 2.4 => (2.5)
--------------------
* Support of Scilab 6 added
* Fixed bug #1637 : boxcoxinverse now produce
NAN when the inverse transformation is not possible.
http://forge.scilab.org/index.php/p/stixbox/issues/1637/
* Created Box-Cox transformation,
parameter estimation and inverse transformation.
* Fixed bug #1634
http://forge.scilab.org/index.php/p/stixbox/issues/1634/
Improved performance of plotmatrix.
* Renamed regres into regress into to math Matlab's regress.
B = regres(y,X) => B = regress(y,X)
* Renamed regresprint into regressprint in order to be
regresprint(fullstats) => regressprint(fullstats)
* Fixed bug #1633 : regres failed with one single input x
http://forge.scilab.org/index.php/p/stixbox/issues/1633/
* Renamed qqnorm into normplot in order to match Matlab's
name.
qqnorm(x) => normplot(x)
* Fixed bug #1635 : qqnorm had wrong labels
http://forge.scilab.org/index.php/p/stixbox/issues/1635/
* Added Longley to the datasets.
* Create getdatanumber() to get the number of available
datasets.
* Fixed bug #1082 : cmpmod had no example
http://forge.scilab.org/index.php/p/stixbox/issues/1082/
* Fixed Bug #1631 : removed unnecessary mtlb_length
http://forge.scilab.org/index.php/p/stixbox/issues/1631/
* Fixed bug #1550 : plotsym did not manage a single symbol
http://forge.scilab.org/index.php/p/stixbox/issues/1550/
* Fixed bug #1627 : layout of plots was not consistent
http://forge.scilab.org/index.php/p/stixbox/issues/1627/
* Removed rexpweib.
This fixes bug #1079 : rexpweib had no example.
http://forge.scilab.org/index.php/p/stixbox/issues/1079
This fixes bug #1080 : rexpweib should be in distfun.
http://forge.scilab.org/index.php/p/stixbox/issues/1080/
To update your code, please replace
x=rexpweib(n,l,a)
// with :
distfuna=(1/l)**(1/a);
distfunb=a;
x=distfun_wblrnd(distfuna,distfunb,n,1);
* Fixed "Warning 1./" in histo.
* http://forge.scilab.org/index.php/p/stixbox/issues/1613/
regres failed when number of observations was
less than the number of parameters
* http://forge.scilab.org/index.php/p/stixbox/issues/1572
The help page of regres was not up-to-date.
* Added an example into the help page of lsselect.
* http://forge.scilab.org/index.php/p/stixbox/issues/1495/
Fixed example in regresprint.
* http://forge.scilab.org/index.php/p/stixbox/issues/1499/
Removed cov function, now than a correct implementation
is in Scilab.
* http://forge.scilab.org/index.php/p/stixbox/issues/1618/
Fixed lack of accuracy in polyfit/polyval when
problem is ill-conditionned.
Added mu argument to standardize (i.e. scale) the data.