Welcome to Scilab 6
===================
This file details the changes between Scilab 6.0.0-beta-1,
this release, and the previous release 5.5.2. For changelogs with
earlier release, please see Scilab 5.5.2.
This file is intended for the specific needs of advanced users, and
describes:
- New and modified features, in each module,
- Changes in functions (removed/added/modified),
- Changes in the language,
- Bug fixes.
This changelog is most likely incomplete, as an enormous amount of
code has changed between 5.5.2 and 6. Please report any thing we could
have missed, on the mailing lists or on http://bugzilla.scilab.org,
and we will correct it before the final Scilab 6.0.0 release.
Main new Features
=================
For high-level description of the main new features of this release,
please consult the file modules/helptools/data/pages/homepage-en_US.html.
It is also available as the "What's new" page of the help, by simply typing
"help" in Scilab console.
In summary, the main new features are:
* New language parser and interpreter, ensuring:
- Support for bigger data sets: dynamic memory usage.
No need for "stacksize" anymore.
- Xcos also uses the new re-written Scilab engine.
* New code productivity features: full-featured debugger, profiler
and coverage tool, and "lint"-like commands.
* Newsfeed, providing a continuous feed of news, tips, and general
communication from the community and from Scilab Enterprises.
* Licensing change: Scilab is now released under the terms of the GNU
General Public License (GPL) v2.0 (but continues to be available
under the terms of the CeCILL v2.1).
API modification
================
* (new in 6.0.0 beta-1) A new set of C APIs to write C or C++
extensions (toolboxes) to Scilab. It allows defining native
functions (commonly called “gateways”), getting input parameters
for such functions, setting return parameters, accessing local
variables, using common helper functions for accessing environment
information (such as warning level), generate errors... It also
includes ways to overload existing Scilab functions to support
additional parameter types (see scilab_overload). Finally, you can
call back Scilab functions (macros and built-in functions) from
your gateway (see scilab_call).
* User-defined functions written in C (gateways) must now use the
"pvApiCtx" name for their second parameter, for example:
int sci_Levkov(char *fname, void* pvApiCtx)
instead of any "unsigned long l". This is now requires for some
macros, such as Rhs(), to work. (Although not strictly an API change,
it may require gateway code to be modified).
Other feature changes
=====================
* Valgrind error detection added to test_run (on Linux only)
* Addition or subtraction with an empty matrix now return an empty matrix.
* SSE2, Streaming SIMD Extensions 2 support is now mandatory to run
Scilab on Linux i686.
* A call stack limit has been introduced. Default maximum depth is
setup to 1000 andcan be changed by new function recursionlimit or by
preferences interface.
* The floating point exception mode (ieee) is now set to 2 by default:
floating point exceptions now produce "Inf" or "Nan", and do not
cause any error. The previous behavior can be recalled by simply
calling: ieee(0)
* Function without output argument cannot be call in assignation expression
function foo()
//...
endfunction
val = foo() //return error
Other feature additions
=======================
* Multiline blocs of comments /* ...\n ... \n ... */ are now possible.
* scatter/scatter3 plot with different mark colors is now available.
* parulacolormap is now available.
* name2rgb can now handle a single string and a matrix of strings.
* isoview, isoview on, isoview off, isoview(idGraphics, "on"|"off") are now supported
* twinkle and twinkle(n) are now supported: by default, the current element gce() blinks.
* householder() can now return the reflection matrix, and has a demo.
* ndgrid() can now works with any types of homogeneous data
* bench_run() can now return its results and/or record them in a file
* typeof(.., "overload") allows now to get the overloading type-code of an object
* sign() can now handle a sparse matrix.
* sleep(..,'s') allows now to specify the duration in seconds.
* deletefile can delete multiple files at once.
Installation
============
* Under Windows, MKL packages are now included in Scilab installer and
are not more downloaded anymore while installing Scilab.
Compilation
===========
* A C++11 compliant compiler is now needed.
* Java minimal version switch to 1.8.
* Ant minimal version switched to 1.9.0 (for Java 1.8 compatibility).
* ecj minimal version switched to 4.4.0 (for Java 1.8 compatibility).
* --without-xcos now only disable Xcos compilation. Xcos graphical
interface is disabled using --without-gui.
Dependencies
=============
* Apache xmlgraphics stack upgraded to the latest versions :
- xmlgraphics-commons 2.0.1
- Batik 1.8
- FOP 2.0
Packaging & Supported Operating Systems
=======================================
* Scilab embedded JVM has been upgraded to Java 1.8. To run or compile
Scilab 6.0.0 you need at least:
- Windows:
Windows 8 (Desktop)
Windows 7
Windows Vista SP2
Windows Server 2008 R2 SP1 (64-bit)
Windows Server 2012 (64-bit)
- Mac OS X:
Intel-based Mac running Mac OS X 10.8.3+, 10.9+
- Linux:
Red Hat Enterprise Linux 5.5+, 6.x (32-bit), 6.x (64-bit), 7.x (64-bit)
Oracle Linux 5.5+, 6.x (32-bit), 6.x (64-bit), 7.x (64-bit)
Ubuntu Linux 12.04 LTS, 13.x
Suse Linux Enterprise Server 10 SP2+, 11.x
For more information, please consult: http://java.com/en/download/help/sysreq.xml
Signal Processing
==================
* amell function:
- now checks its parameters are real numbers,
- now throws an error if the second parameter is not a scalar.
Input/Output File
==================
* The use of I/O console is now allowed with the following functions:
mget, mgetl, mgetstr, mput, mputl and mputstr.
* mclearerr now returns a flag indicating the file identifier validity.
* fileinfo can now take a row vector as input.
* msprintf no more returns an error message when there are too many
input arguments (more values that format needs).
Data Structures
================
* cells and structs are now native types, hence improving performances.
* cells:
- insertion and extraction must be done via () or {}.
- .dims and .entries fields have been removed, please use size and () instead.
* struct
- dims field has been removed, please use size instead.
* hypermatrix:
- hypermatrices are natively managed (without mlist overloading).
- typeof function now returns real type like constant, string, ... instead of hypermat
- type function returns real type like 1, 10, ... instead of 17 (mlist).
- .dims and .entries fields have been removed, please use size and () instead.
Syntax Modifications
=====================
* Declaration of a number on two lines is no longer allowed:
1..
2
* 1./M is now parsed as 1 ./ M instead of 1. / M
* {} and [] are now distinct operators. {} are now used to build cells.
* Declaring non-homogenous strings ("string' or 'string") is no more allowed.
* New shortcut operators have been introduced: && and ||.
* Syntax %i:10 is now deprecated (only real scalars can be used).
* (a=b) executed like a == b is now deprecated and returns an error.
* while/else control instruction is no more supported.
Modified Functions
===================
* exec: exec of macro executes the body in the current scope but the prototype must have zero input and output arguments.
* error: an error number in input is deprecated.
* impl: Recall impl with the same parameters as in its previous stop is now available.
* ode: y0 is restricted to a column vector.
* pppdiv: Return a scalar of type 'constant' when the rank is 0.
* pdiv: Return a matrix of type 'constant' when all the rank are 0.
* test_run can now take "[]" as argument to be used on console; for instance: test_run string [] no_check_ref
* strange([]) now returns %nan instead of [], as all other functions for statistical dispersion
* Writing string or string matrix in a file does not add blanck space before each value:
write("TMPDIR/test", ["test", "sample"; "sample", "test"])
"-" + mgetl("TMPDIR/test") + "-"
Obsolete functions or features
==============================
* maxfiles function is now obsolete.
* xpause will be removed from Scilab 6.1. Please use sleep(..) instead.
* isoview(xmin,xmax,ymin,ymax) will be removed from Scilab 6.1. Please use isoview("on"), replot(..) instead.
Removed Functions
==================
* intersci has been removed. Please use swig instead.
* numdiff has been removed. Please use numderivative instead.
* derivative has been removed. Please use numderivative instead.
* curblockc has been removed. Please use curblock instead.
* extract_help_examples has been removed. (Undocumented and based on former help format).
* Symbolic module functions have been removed:
- addf
- cmb_lin
- ldivf
- mulf
- rdivf
- solve
- subf
- trianfml
- trisolve
- block2exp
* Functions based on former Scilab stack are removed:
- comp
- errcatch
- iserror
- fun2string
- getvariablesonstack
- gstacksize
- macr2lst
- stacksize
- code2str
- str2code.
- -mem launching option (used to set stacksize at startup).
Known issues
=============
* This version will start in English by default.
Bug Fixes
=========
In 6.0.0:
* Bug #6314 fixed - The identical code of %p_m_r() and %r_m_p() was not factorized
* Bug #9456 fixed - bench_run did not work on a path or in a toolbox
* Bug #12559 - Fixed some memory leaks in FFTW
* Bug #12872 - help pages of else, elseif, end, try, sciargs, global, halt, empty and power were in wrong help sections
* Bug #13465 fixed - The display of polyline .display_function and .display_function properties was not conventional
* Bug #13468 fixed - Scilab hanged when incorrect format was used for file reading using mfscanf.
* Bug #13725 fixed - xfpoly polygon filling would may fail for some cases
* Bug #13769 fixed - t = "abc..//ghi" was parsed as a continued + comment
* Bug #13810 fixed - householder(v, k*v) returned column of %nan. Input parameters were not checked. The Householder matrix could not be returned. Help pages were inaccurate and without examples. There was no householder() demo.
* Bug #13839 fixed - sign() could not be used with sparse matrices
* Bug #13869 fixed - bench_run with option nb_run=10 did not override the NB RUN tags
* Bug #13873 fixed - %hm_stdev(H,idim>2) returned zeros(H)
* Bug #13897 fixed - concatenating structures with same fields in mismatching orders failed
* Bug #13939 fixed - in HTML help pages, itemizedlist
were rendered as ordered ones
* Bug #13965 fixed - The rendering of histograms with histplot() was poor
* Bug #13966 fixed - twinkle and twinkle(n) were not supported
* Bug #13974 fixed - isoview(xmin, xmax, ymin, ymax) was unhandy.
* Bug #14035 fixed - ndgrid did not manage all homogeneous data type (booleans, integers, polynomials, rationals, strings, [])
* Bug #14099 fixed - sci2exp macro was fixed to avoid "a+[] Warning"
* Bug #14111 fixed - modified lib function to detect Scilab version 5 libraries and give proper error messages
* Bug #14116 fixed - Invalid exponent in case of complex exponents especially 0*%i.
* Bug #14271 fixed - conjgrad() displayed an incorrect error message about number of arguments.
* Bug #14347 fixed - plot2d crashed with multiple entries (non regression test).
* Bug #14359 fixed - Black Hole demo updated. Stop and Clear buttons did not have priority tag set. Callback_type property has been added and set to 10.
* Bug #14362 fixed - The ode() Lotka demo had typo errors
* Bug #14374 fixed - Parser did not manage comments properly in shellmode
* Bug #14389 fixed - Updated int8(), type(), typeof(), overloading(), iconvert() and inttype() help pages. Added int64() and uint64() descriptions.
* Bug #14390 fixed - double() help page had irrelevant syntaxes and was poor
* Bug #14396 fixed - real number display was not proper for very wide decimal parts
* Bug #14398 fixed - Matrix extraction was mistakenly considered a function call in calling sequence
* Bug #14415 fixed - Corrected some spellings error in help pages
* Bug #14416 fixed - The file extension filter in Scinotes "Save as" window did not re-used the active file's extension when applicable.
* Bug #14418 fixed - saxon9he.jar made scilab throw an XPathFactoryConfigurationException.
* Bug #14423 fixed - bench_run did not have a return value, export file was not configurable
* Bug #14425 fixed - xpause() was a duplicate of sleep(). sleep() did not propose "s" time unit.
* Bug #14429 fixed - rationals r+(-r) and r-r did not simplify the denominator to 1 in simp_mode(%t)
* Bug #14432 fixed - using an implicit list as scoped assignation to a variable in function call caused scilab to crash
* Bug #14433 fixed - acoth (which call atanh) crash scilab
* Bug #14434 fixed - PlotSparse did not work anymore.
* Bug #14446 fixed - Corrected the number of argument in the error message generated by save() on passing wrong type of argument.
* Bug #14453 fixed - strcat([]) now returns [] instead of null string
* Bug #14468 fixed - Scinotes was unable to export to HTML.
* Bug #14471 fixed - strange([]) returned [] instead of %nan as all other functions for statistical dispersion
* Bug #14476 fixed - Dotmultiplication between polynomials and imaginary numbers was always returning 0
In 6.0.0 beta-1:
* Bug #6057 fixed - trailing space after minus sign has been removed from the display of values
* Bug #9560 fixed - (1./M) was parsed as (1. / M) instead of (1 ./ M)
* Bug #11511 fixed - error() did non accept string matrix (non regression test).
* Bug #12044 fixed - Adding or substracting the empty matrix now return an empty matrix.
* Bug #12419 fixed - objects were cleared before the scilab.quit was called
* Bug #12928 fixed - int functions with %nan and %inf return wrong values.
* Bug #13298 fixed - Static analysis bugs detected by PVS-Studio fixed.
* Bug #13709 fixed - unique function sometimes returned wrong index values.
* Bug #13750 fixed V- Calling ss2ss function with flag = 2 returned an error.
* Bug #13780 fixed - size with two input and output arguments did not return an error.
* Bug #13795 fixed - grep with regexp option did not match the empty string properly
* Bug #13843 fixed - Scilab crashed when polarplot and plot2d were called with wrong strf value.
* Bug #13853 fixed - plzr() returned wrong results for discrete-time systems with a numeric time step.
* Bug #13862 fixed - There was no lazy evaluation of 'or' operands in 'if' tests.
* Bug #13864 fixed - macro %l_isequal was useless in Scilab 6.
* Bug #13872 fixed - Non regression test added for unique function (the indices returned were wrong)
* Bug #13890 fixed - getd did not return loaded symbols in previous scope.
* Bug #13893 fixed - simp() function did not set a rational denominator at 1 when numerator was equal to zero.
* Bug #13894 fixed - Default working directory of the previous session did not work.
* Bug #13903 fixed - get_function_path() returned a path with a missing file separator.
* Bug #13907 fixed - Avoids the gray background on the right panel of the palette Browser.
* Bug #13908 fixed - part(text, n:$) was very slow.
* Bug #13918 fixed - Unmanaged operations on hypermatrix did not call overload functions.
* Bug #13919 fixed - Scilab parsed "hidden" as a reserved keyword but it is not used.
* Bug #13920 fixed - `getscilabkeywords` help page should be in the "Scilab keywords" section.
* Bug #13931 fixed - handle "aarch64" processor for some Linux distribution.
* Bug #13944 fixed - The menu "Toolboxes" was missing.
* Bug #13983 fixed - who_user returned wrong values.
* Bug #13986 fixed - setdefaultlanguage did not set value correctly in Windows registry.
* Bug #13990 fixed - `gettext` did not manage the added '_W' macro.
* Bug #13990 fixed - Windows installer did not ship all localization files.
* Bug #13999 fixed - editor() was modal. It locked the console using an external editor.
* Bug #14020 fixed - Incorrect carriage return ascii code.
* Bug #14022 fixed - getscilabkeywords() was KO (+gateway what() added).
* Bug #14023 fixed - It was not possible to concatenate cells.
* Bug #14024 fixed - Print of macrofile display a debug message
instead of macro prototype.
* Bug #14025 fixed - head_comments did not take into account compiled functions.
* Bug #14028 fixed - force flag of genlib did not rebuild bin file.
* Bug #14030 fixed - Linear algebra demo crashed due to a bad delete in schur implementation and free a NULL pointer in fft implementation.
* Bug #14036 fixed - tag and user_data properties were not displayed and not documented for light entity.
* Bug #14038 fixed - Encoded integers were no longer accepted for list extraction.
* Bug #14040 fixed - graphic property setting fails when using array of handles
* Bug #14041 fixed - genlib crash when the file is locked by another program.
* Bug #14043 fixed - Examples of api Scilab help pages had to be updated (pvApiCtx in gateway prototypes).
* Bug #14047 fixed - wrong behaviour of break ( continue ) in if outside of loop.
* Bug #14049 fixed - genlib hangs if an unexpected endfunction occurs.
* Bug #14055 fixed - overload on matrix concatenation did not called with [].
* Bug #14057 fixed - grand(m,n) returned a wrong error and grand(m,n,p) called an overloading function instead of returning an error.
* Bug #14058 fixed - Scilab crashed with 'file("close", file())' instruction
* Bug #14059 fixed - Lack of performance on deletion of matrix elements.
* Bug #14065 fixed - Change "java size" in points in graphics font help page.
* Bug #14082 fixed - m=1; m()=1; made Scilab crash.
* Bug #14093 fixed - atanh returns NaN for values with an absolute value greater than 1
* Bug #14095 fixed - Scilab crashed when a .fig file was loaded with loadmatfile function.
* Bug #14096 fixed - Issue with mscanf Function.
* Bug #14097 fixed - genlib no more adds a separator at the end of the lib path if it is not given in the directory path.
* Bug #14105 fixed - New block comments /*...*/ feature was not documented.
* Bug #14107 fixed - lstcat of a string and a list did not produce consistent results.
* Bug #14109 fixed - lsq function crashed Scilab when Scilab version depended on mkl library.
* Bug #14113 fixed - Scilab 6 did not detect infinite loop.
* Bug #14135 fixed - crash when running "Graphics -> Matplot -> Java Image" demonstration.
* Bug #14141 fixed - recursive insertion: gcf().attribute=value => "Wrong insertion : function or macro are not expected".
* Bug #14144 fixed - Scilab crashed with int64(2^63).
* Bug #14149 fixed - hdf5 could not restore hypermatrix with good dimensions.
* Bug #14150 fixed - The Windows SDK was not found on Windows 8.1.
* Bug #14156 fixed - mfscanf returned an empty matrix when datafile contained a header.
* Bug #14159 fixed - Matplot crashed Scilab on boolean input.
* Bug #14178 fixed - tcl/tk unavailability on MacOS is now documented.
* Bug #14181 fixed - Calling intg (or integrate) in a function that is being integrated failed.
* Bug #14187 fixed - fscanfMat failed to read format %d, %i and %f.
* Bug #14199 fixed - sqrt returned wrong dimension results on matrix with more than dimensions.
* Bug #14203 fixed - Improve some error messages, some help pages and some comments.
* Bug #14204 fixed - dec2bin ( dec2base ) must show a better error message for too large values.
* Bug #14205 fixed - Console crash when assigning uint32 numbers to double matrix.
* Bug #14209 fixed - 1:245 created infinite loop.
* Bug #14212 fixed - Scilab 6 did not load array of struct from Scilab 5.5 files correctly
* Bug #14219 fixed - As bug #14203, improve some error messages, some help pages and some comments.
* Bug #14223 fixed - det returned an error when it is used with a singular matrix.
* Bug #14225 fixed - command-line option "-quit" should set the processs Exit status
* Bug #14228 fixed - Setting rotation_angles property to a matrix of any size did not return error message.
* Bug #14232 fixed - Typos in Xcos.
* Bug #14245 fixed - Problem in recursive extraction using list with struct.
* Bug #14247 fixed - sqrt function did not work on hypermatrices (non regression test).
* Bug #14249 fixed - ctrl-c can be used to stop writing control expression.
* Bug #14251 fixed - `spec` leaked some memory.
* Bug #14253 fixed - Insertion in a struct contained in a list fixed.
* Bug #14255 fixed - fftw without MKL leaked in internal withMKL function.
* Bug #14300 fixed - Crash when playing with structures.
* Bug #14303 fixed - matrix display for large number was not correctly aligned
* Bug #14304 fixed - find(x, nmax) returned [] (non regression test).
* Bug #14313 fixed - Parser did not create a column separator after spaces and '...' at the end of lines
* Bug #14316 fixed - Operation scalar^matrix was identical to scalar.^matrix instead of being expm( log(scalar) * matrix )
* Bug #14331 fixed - The third argument of lsq crashed Scilab.
* Bug #14348 fixed - Scilab did not open sce/sci file from Windows explorer.
* Bug #14361 fixed - Parser did not manage linebreak + blockcomment "... /* a comment */"
In 6.0.0 alpha-2 and earlier:
* Bug #11511 fixed - error() did non accept string matrix (non regression test).
* Bug #12044 fixed - Adding or substracting the empty matrix now return an empty matrix.
* Bug #12419 fixed - objects were cleared before the scilab.quit was called
* Bug #12928 fixed - int functions with %nan and %inf return wrong values.
* Bug #13709 fixed - unique function sometimes returned wrong index values.
* Bug #13750 fixed - Calling ss2ss function with flag = 2 returned an error.
* Bug #13780 fixed - size with two input and output arguments did not return an error.
* Bug #13843 fixed - Scilab crashed when polarplot and plot2d were called with wrong strf value.
* Bug #13853 fixed - plzr() returned wrong results for discrete-time systems with a numeric time step.
* Bug #13862 fixed - There was no lazy evaluation of 'or' operands in 'if' tests.
* Bug #13864 fixed - macro %l_isequal was useless in Scilab 6.
* Bug #13872 fixed - Non regression test added for unique function (the indices returned were wrong)
* Bug #13890 fixed - getd did not return loaded symbols in previous scope.
* Bug #13893 fixed - simp() function did not set a rational denominator at 1 when numerator was equal to zero.
* Bug #13894 fixed - Default working directory of the previous session did not work.
* Bug #13903 fixed - get_function_path() returned a path with a missing file separator.
* Bug #13907 fixed - Avoids the gray background on the right panel of the palette Browser.
* Bug #13908 fixed - part(text, n:$) was very slow.
* Bug #13919 fixed - Scilab parsed "hidden" as a reserved keyword but it is not used.
* Bug #13920 fixed - `getscilabkeywords` help page should be in the "Scilab keywords" section.
* Bug #13931 fixed - handle "aarch64" processor for some Linux distribution.
* Bug #13944 fixed - The menu "Toolboxes" was missing.
* Bug #13983 fixed - who_user returned wrong values.
* Bug #13990 fixed - `gettext` did not manage the added '_W' macro.
* Bug #14020 fixed - Incorrect carriage return ascii code.
* Bug #14022 fixed - getscilabkeywords() was KO (+gateway what() added).
* Bug #14023 fixed - It was not possible to concatenate cells.
* Bug #14024 fixed - Print of macrofile display a debug message
instead of macro prototype.
* Bug #14025 fixed - head_comments did not take into account compiled functions.
* Bug #14028 fixed - force flag of genlib did not rebuild bin file.
* Bug #14036 fixed - tag and user_data properties were not displayed and not documented for light entity.
* Bug #14038 fixed - Encoded integers were no longer accepted for list extraction.
* Bug #14040 fixed - graphic property setting fails when using array of handles
* Bug #14043 fixed - Examples of api Scilab help pages had to be updated (pvApiCtx in gateway prototypes).
* Bug #14047 fixed - wrong behaviour of break ( continue ) in if outside of loop.
* Bug #14049 fixed - genlib hangs if an unexpected endfunction occurs.
* Bug #14055 fixed - overload on matrix concatenation did not called with [].
* Bug #14057 fixed - grand(m,n) returned a wrong error and grand(m,n,p) called an overloading function instead of returning an error.
* Bug #14058 fixed - Scilab crashed with 'file("close", file())' instruction
* Bug #14059 fixed - Lack of performance on deletion of matrix elements.
* Bug #14065 fixed - Change "java size" in points in graphics font help page.
* Bug #14082 fixed - m=1; m()=1; made Scilab crash.
* Bug #14093 fixed - atanh returns NaN for values with an absolute value greater than 1
* Bug #14095 fixed - Scilab crashed when a .fig file was loaded with loadmatfile function.
* Bug #14097 fixed - genlib no more adds a separator at the end of the lib path if it is not given in the directory path.
* Bug #14105 fixed - New block comments /*...*/ feature was not documented.
* Bug #14107 fixed - lstcat of a string and a list did not produce consistent results.
* Bug #14109 fixed - lsq function crashed Scilab when Scilab version depended on mkl library.
* Bug #14113 fixed - Scilab 6 did not detect infinite loop.
* Bug #14135 fixed - crash when running "Graphics -> Matplot -> Java Image" demonstration.
* Bug #14141 fixed - recursive insertion: gcf().attribute=value => "Wrong insertion : function or macro are not expected".
* Bug #14144 fixed - Scilab crashed with int64(2^63).
* Bug #14149 fixed - hdf5 could not restore hypermatrix with good dimensions.
* Bug #14150 fixed - The Windows SDK was not found on Windows 8.1.
* Bug #14156 fixed - mfscanf returned an empty matrix when datafile contained a header.
* Bug #14159 fixed - Matplot crashed Scilab on boolean input.
* Bug #14187 fixed - fscanfMat failed to read format %d, %i and %f.
* Bug #14199 fixed - sqrt returned wrong dimension results on matrix with more than dimensions.
* Bug #14203 fixed - Improve some error messages, some help pages and some comments.
* Bug #14204 fixed - dec2bin ( dec2base ) must show a better error message for too large values.
* Bug #14205 fixed - Console crash when assigning uint32 numbers to double matrix.
* Bug #14209 fixed - 1:245 created infinite loop.
* Bug #14212 fixed - Scilab 6 did not load array of struct from Scilab 5.5 files correctly
* Bug #14219 fixed - As bug #14203, improve some error messages, some help pages and some comments.
* Bug #14223 fixed - det returned an error when it is used with a singular matrix.
* Bug #14225 fixed - command-line option "-quit" should set the processs Exit status
* Bug #14228 fixed - Setting rotation_angles property to a matrix of any size did not return error message.
* Bug #14232 fixed - Typos in Xcos.
* Bug #6064 fixed - scatter function did not exist in Scilab.
* Bug #8990 fixed - zoom_auto feature was missing on the plot toolbar.
* Bug #9621 fixed - A tlist with undefined fields can now be saved.
* Bug #12202 fixed - Mixing int8 and doubles with colon operator led to wrong results.
* Bug #13289 fixed - Using non-integer indexes for mlists made Scilab crash.
* Bug #13517 fixed - isdef crashed Scilab when called with a vector of strings
as input in a function and after a declaration of variable.
* Bug #13807 fixed - Invalid margins were computed when figure was not visible.
* Bug #13829 fixed - mean and sum functions returned wrong results for hypermatrices.
* Bug #13834 fixed - Drawing a high number of strings in a figure generated a Java exception.
* Bug #13838 fixed - Sparse and complex substraction made Scilab crash.
* Bug #13854 fixed - Under some operating systems, SciNotes did not initialize a new document at startup.
* Bug #13866 fixed - There were some issues with FFTW3 library.
* Bug #13881 fixed - datatipRemoveAll did not work.
* Bug #13924 fixed - rationals r1==r2 and r1~=r2 might sometimes be wrong.
* Bug #13925 fixed - SciNotes used the wrong paired bracket highlight style.
* Bug #13941 fixed - Internal timestamps of HDF5 files prevented having a fixed
hash for an unvarying set of saved objects.
* Bug #13942 fixed - Now the palette browser tree is always resized when
expanded/collapsed.
* Bug #13971 fixed - A space has been added between Scilab prompt and cursor.
* Bug #13972 fixed - Wildcard ('*') was not managed in printf expressions.
* Bug #14043 fixed - Gateway C prototype changed from int sci_...(char *fname, unsigned long l)
to sci_...(char *fname, void* pvApiCtx). Variable name has to be
exactly "pvApyCtx" when macros are used in a gateway.
* Bug #14044 fixed - MALLOC.h is now renamed to sci_malloc.h.