6 This file details the changes between Scilab 6.0.0-beta-1,
7 this release, and the previous release 5.5.2. For changelogs with
8 earlier release, please see Scilab 5.5.2.
10 This file is intended for the specific needs of advanced users, and
12 - New and modified features, in each module,
13 - Changes in functions (removed/added/modified),
14 - Changes in the language,
17 This changelog is most likely incomplete, as an enormous amount of
18 code has changed between 5.5.2 and 6. Please report any thing we could
19 have missed, on the mailing lists or on http://bugzilla.scilab.org,
20 and we will correct it before the final Scilab 6.0.0 release.
25 For high-level description of the main new features of this release,
26 please consult the file modules/helptools/data/pages/homepage-en_US.html.
27 It is also available as the "What's new" page of the help, by simply typing
28 "help" in Scilab console.
30 In summary, the main new features are:
32 * New language parser and interpreter, ensuring:
33 - Support for bigger data sets: dynamic memory usage.
34 No need for "stacksize" anymore.
35 - Xcos also uses the new re-written Scilab engine.
37 * New code productivity features: full-featured debugger, profiler
38 and coverage tool, and "lint"-like commands.
40 * Newsfeed, providing a continuous feed of news, tips, and general
41 communication from the community and from Scilab Enterprises.
43 * Licensing change: Scilab is now released under the terms of the GNU
44 General Public License (GPL) v2.0 (but continues to be available
45 under the terms of the CeCILL v2.1).
51 * (new in 6.0.0 beta-1) A new set of C APIs to write C or C++
52 extensions (toolboxes) to Scilab. It allows defining native
53 functions (commonly called “gateways”), getting input parameters
54 for such functions, setting return parameters, accessing local
55 variables, using common helper functions for accessing environment
56 information (such as warning level), generate errors... It also
57 includes ways to overload existing Scilab functions to support
58 additional parameter types (see scilab_overload). Finally, you can
59 call back Scilab functions (macros and built-in functions) from
60 your gateway (see scilab_call).
62 * User-defined functions written in C (gateways) must now use the
63 "pvApiCtx" name for their second parameter, for example:
66 int sci_Levkov(char *fname, void* pvApiCtx)
68 instead of any "unsigned long l". This is now requires for some
69 macros, such as Rhs(), to work. (Although not strictly an API change,
70 it may require gateway code to be modified).
76 * Valgrind error detection added to test_run (on Linux only)
78 * Addition or subtraction with an empty matrix now return an empty matrix.
80 * SSE2, Streaming SIMD Extensions 2 support is now mandatory to run
83 * A call stack limit has been introduced. Default maximum depth is
84 setup to 1000 andcan be changed by new function recursionlimit or by
85 preferences interface.
87 * The floating point exception mode (ieee) is now set to 2 by default:
88 floating point exceptions now produce "Inf" or "Nan", and do not
89 cause any error. The previous behavior can be recalled by simply
92 * Function without output argument cannot be call in assignation expression
98 val = foo() //return error
100 Other feature additions
101 =======================
103 * Multiline blocs of comments /* ...\n ... \n ... */ are now possible.
105 * scatter/scatter3 plot with different mark colors is now available.
107 * parulacolormap is now available.
109 * name2rgb can now handle a single string and a matrix of strings.
111 * isoview, isoview on, isoview off, isoview(idGraphics, "on"|"off") are now supported
113 * twinkle and twinkle(n) are now supported: by default, the current element gce() blinks.
115 * householder() can now return the reflection matrix, and has a demo.
117 * ndgrid() can now works with any types of homogeneous data
119 * bench_run() can now return its results and/or record them in a file
121 * typeof(.., "overload") allows now to get the overloading type-code of an object
123 * sign() can now handle a sparse matrix.
125 * sleep(..,'s') allows now to specify the duration in seconds.
127 * deletefile can delete multiple files at once.
133 * Under Windows, MKL packages are now included in Scilab installer and
134 are not more downloaded anymore while installing Scilab.
140 * A C++11 compliant compiler is now needed.
142 * Java minimal version switch to 1.8.
144 * Ant minimal version switched to 1.9.0 (for Java 1.8 compatibility).
146 * ecj minimal version switched to 4.4.0 (for Java 1.8 compatibility).
148 * --without-xcos now only disable Xcos compilation. Xcos graphical
149 interface is disabled using --without-gui.
155 * Apache xmlgraphics stack upgraded to the latest versions :
156 - xmlgraphics-commons 2.0.1
161 Packaging & Supported Operating Systems
162 =======================================
164 * Scilab embedded JVM has been upgraded to Java 1.8. To run or compile
165 Scilab 6.0.0 you need at least:
170 Windows Server 2008 R2 SP1 (64-bit)
171 Windows Server 2012 (64-bit)
173 Intel-based Mac running Mac OS X 10.8.3+, 10.9+
175 Red Hat Enterprise Linux 5.5+, 6.x (32-bit), 6.x (64-bit), 7.x (64-bit)
176 Oracle Linux 5.5+, 6.x (32-bit), 6.x (64-bit), 7.x (64-bit)
177 Ubuntu Linux 12.04 LTS, 13.x
178 Suse Linux Enterprise Server 10 SP2+, 11.x
179 For more information, please consult: http://java.com/en/download/help/sysreq.xml
186 - now checks its parameters are real numbers,
187 - now throws an error if the second parameter is not a scalar.
193 * The use of I/O console is now allowed with the following functions:
194 mget, mgetl, mgetstr, mput, mputl and mputstr.
196 * mclearerr now returns a flag indicating the file identifier validity.
198 * fileinfo can now take a row vector as input.
200 * msprintf no more returns an error message when there are too many
201 input arguments (more values that format needs).
207 * cells and structs are now native types, hence improving performances.
210 - insertion and extraction must be done via () or {}.
211 - .dims and .entries fields have been removed, please use size and () instead.
214 - dims field has been removed, please use size instead.
217 - hypermatrices are natively managed (without mlist overloading).
218 - typeof function now returns real type like constant, string, ... instead of hypermat
219 - type function returns real type like 1, 10, ... instead of 17 (mlist).
220 - .dims and .entries fields have been removed, please use size and () instead.
224 =====================
225 * Declaration of a number on two lines is no longer allowed:
229 * 1./M is now parsed as 1 ./ M instead of 1. / M
231 * {} and [] are now distinct operators. {} are now used to build cells.
233 * Declaring non-homogenous strings ("string' or 'string") is no more allowed.
235 * New shortcut operators have been introduced: && and ||.
237 * Syntax %i:10 is now deprecated (only real scalars can be used).
239 * (a=b) executed like a == b is now deprecated and returns an error.
241 * while/else control instruction is no more supported.
246 * exec: exec of macro executes the body in the current scope but the prototype must have zero input and output arguments.
247 * error: an error number in input is deprecated.
248 * impl: Recall impl with the same parameters as in its previous stop is now available.
249 * ode: y0 is restricted to a column vector.
250 * pppdiv: Return a scalar of type 'constant' when the rank is 0.
251 * pdiv: Return a matrix of type 'constant' when all the rank are 0.
252 * test_run can now take "[]" as argument to be used on console; for instance: test_run string [] no_check_ref
253 * strange([]) now returns %nan instead of [], as all other functions for statistical dispersion
254 * Writing string or string matrix in a file does not add blanck space before each value:
255 write("TMPDIR/test", ["test", "sample"; "sample", "test"])
256 "-" + mgetl("TMPDIR/test") + "-"
259 Obsolete functions or features
260 ==============================
261 * maxfiles function is now obsolete.
263 * xpause will be removed from Scilab 6.1. Please use sleep(..) instead.
265 * isoview(xmin,xmax,ymin,ymax) will be removed from Scilab 6.1. Please use isoview("on"), replot(..) instead.
270 * intersci has been removed. Please use swig instead.
272 * numdiff has been removed. Please use numderivative instead.
274 * derivative has been removed. Please use numderivative instead.
276 * curblockc has been removed. Please use curblock instead.
278 * extract_help_examples has been removed. (Undocumented and based on former help format).
280 * Symbolic module functions have been removed:
292 * Functions based on former Scilab stack are removed:
297 - getvariablesonstack
303 - -mem launching option (used to set stacksize at startup).
309 * This version will start in English by default.
317 * Bug #6314 fixed - The identical code of %p_m_r() and %r_m_p() was not factorized
319 * Bug #9456 fixed - bench_run did not work on a path or in a toolbox
321 * Bug #12559 - Fixed some memory leaks in FFTW
323 * Bug #12872 - help pages of else, elseif, end, try, sciargs, global, halt, empty and power were in wrong help sections
325 * Bug #13465 fixed - The display of polyline .display_function and .display_function properties was not conventional
327 * Bug #13468 fixed - Scilab hanged when incorrect format was used for file reading using mfscanf.
329 * Bug #13725 fixed - xfpoly polygon filling would may fail for some cases
331 * Bug #13769 fixed - t = "abc..//ghi" was parsed as a continued + comment
333 * 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.
335 * Bug #13839 fixed - sign() could not be used with sparse matrices
337 * Bug #13869 fixed - bench_run with option nb_run=10 did not override the NB RUN tags
339 * Bug #13873 fixed - %hm_stdev(H,idim>2) returned zeros(H)
341 * Bug #13897 fixed - concatenating structures with same fields in mismatching orders failed
343 * Bug #13939 fixed - in HTML help pages, itemizedlist <ul> were rendered as ordered ones
345 * Bug #13965 fixed - The rendering of histograms with histplot() was poor
347 * Bug #13966 fixed - twinkle and twinkle(n) were not supported
349 * Bug #13974 fixed - isoview(xmin, xmax, ymin, ymax) was unhandy.
351 * Bug #14035 fixed - ndgrid did not manage all homogeneous data type (booleans, integers, polynomials, rationals, strings, [])
353 * Bug #14099 fixed - sci2exp macro was fixed to avoid "a+[] Warning"
355 * Bug #14111 fixed - modified lib function to detect Scilab version 5 libraries and give proper error messages
357 * Bug #14116 fixed - Invalid exponent in case of complex exponents especially 0*%i.
359 * Bug #14271 fixed - conjgrad() displayed an incorrect error message about number of arguments.
361 * Bug #14347 fixed - plot2d crashed with multiple entries (non regression test).
363 * 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.
365 * Bug #14362 fixed - The ode() Lotka demo had typo errors
367 * Bug #14374 fixed - Parser did not manage comments properly in shellmode
369 * Bug #14389 fixed - Updated int8(), type(), typeof(), overloading(), iconvert() and inttype() help pages. Added int64() and uint64() descriptions.
371 * Bug #14390 fixed - double() help page had irrelevant syntaxes and was poor
373 * Bug #14396 fixed - real number display was not proper for very wide decimal parts
375 * Bug #14398 fixed - Matrix extraction was mistakenly considered a function call in calling sequence
377 * Bug #14415 fixed - Corrected some spellings error in help pages
379 * Bug #14416 fixed - The file extension filter in Scinotes "Save as" window did not re-used the active file's extension when applicable.
381 * Bug #14418 fixed - saxon9he.jar made scilab throw an XPathFactoryConfigurationException.
383 * Bug #14423 fixed - bench_run did not have a return value, export file was not configurable
385 * Bug #14425 fixed - xpause() was a duplicate of sleep(). sleep() did not propose "s" time unit.
387 * Bug #14429 fixed - rationals r+(-r) and r-r did not simplify the denominator to 1 in simp_mode(%t)
389 * Bug #14432 fixed - using an implicit list as scoped assignation to a variable in function call caused scilab to crash
391 * Bug #14433 fixed - acoth (which call atanh) crash scilab
393 * Bug #14434 fixed - PlotSparse did not work anymore.
395 * Bug #14446 fixed - Corrected the number of argument in the error message generated by save() on passing wrong type of argument.
397 * Bug #14453 fixed - strcat([]) now returns [] instead of null string
399 * Bug #14468 fixed - Scinotes was unable to export to HTML.
401 * Bug #14471 fixed - strange([]) returned [] instead of %nan as all other functions for statistical dispersion
403 * Bug #14476 fixed - Dotmultiplication between polynomials and imaginary numbers was always returning 0
408 * Bug #6057 fixed - trailing space after minus sign has been removed from the display of values
410 * Bug #9560 fixed - (1./M) was parsed as (1. / M) instead of (1 ./ M)
412 * Bug #11511 fixed - error() did non accept string matrix (non regression test).
414 * Bug #12044 fixed - Adding or substracting the empty matrix now return an empty matrix.
416 * Bug #12419 fixed - objects were cleared before the scilab.quit was called
418 * Bug #12928 fixed - int functions with %nan and %inf return wrong values.
420 * Bug #13298 fixed - Static analysis bugs detected by PVS-Studio fixed.
422 * Bug #13709 fixed - unique function sometimes returned wrong index values.
424 * Bug #13750 fixed V- Calling ss2ss function with flag = 2 returned an error.
426 * Bug #13780 fixed - size with two input and output arguments did not return an error.
428 * Bug #13795 fixed - grep with regexp option did not match the empty string properly
430 * Bug #13843 fixed - Scilab crashed when polarplot and plot2d were called with wrong strf value.
432 * Bug #13853 fixed - plzr() returned wrong results for discrete-time systems with a numeric time step.
434 * Bug #13862 fixed - There was no lazy evaluation of 'or' operands in 'if' tests.
436 * Bug #13864 fixed - macro %l_isequal was useless in Scilab 6.
438 * Bug #13872 fixed - Non regression test added for unique function (the indices returned were wrong)
440 * Bug #13890 fixed - getd did not return loaded symbols in previous scope.
442 * Bug #13893 fixed - simp() function did not set a rational denominator at 1 when numerator was equal to zero.
444 * Bug #13894 fixed - Default working directory of the previous session did not work.
446 * Bug #13903 fixed - get_function_path() returned a path with a missing file separator.
448 * Bug #13907 fixed - Avoids the gray background on the right panel of the palette Browser.
450 * Bug #13908 fixed - part(text, n:$) was very slow.
452 * Bug #13918 fixed - Unmanaged operations on hypermatrix did not call overload functions.
454 * Bug #13919 fixed - Scilab parsed "hidden" as a reserved keyword but it is not used.
456 * Bug #13920 fixed - `getscilabkeywords` help page should be in the "Scilab keywords" section.
458 * Bug #13931 fixed - handle "aarch64" processor for some Linux distribution.
460 * Bug #13944 fixed - The menu "Toolboxes" was missing.
462 * Bug #13983 fixed - who_user returned wrong values.
464 * Bug #13986 fixed - setdefaultlanguage did not set value correctly in Windows registry.
466 * Bug #13990 fixed - `gettext` did not manage the added '_W' macro.
468 * Bug #13990 fixed - Windows installer did not ship all localization files.
470 * Bug #13999 fixed - editor() was modal. It locked the console using an external editor.
472 * Bug #14020 fixed - Incorrect carriage return ascii code.
474 * Bug #14022 fixed - getscilabkeywords() was KO (+gateway what() added).
476 * Bug #14023 fixed - It was not possible to concatenate cells.
478 * Bug #14024 fixed - Print of macrofile display a debug message
479 instead of macro prototype.
481 * Bug #14025 fixed - head_comments did not take into account compiled functions.
483 * Bug #14028 fixed - force flag of genlib did not rebuild bin file.
485 * Bug #14030 fixed - Linear algebra demo crashed due to a bad delete in schur implementation and free a NULL pointer in fft implementation.
487 * Bug #14036 fixed - tag and user_data properties were not displayed and not documented for light entity.
489 * Bug #14038 fixed - Encoded integers were no longer accepted for list extraction.
491 * Bug #14040 fixed - graphic property setting fails when using array of handles
493 * Bug #14041 fixed - genlib crash when the file is locked by another program.
495 * Bug #14043 fixed - Examples of api Scilab help pages had to be updated (pvApiCtx in gateway prototypes).
497 * Bug #14047 fixed - wrong behaviour of break ( continue ) in if outside of loop.
499 * Bug #14049 fixed - genlib hangs if an unexpected endfunction occurs.
501 * Bug #14055 fixed - overload on matrix concatenation did not called with [].
503 * Bug #14057 fixed - grand(m,n) returned a wrong error and grand(m,n,p) called an overloading function instead of returning an error.
505 * Bug #14058 fixed - Scilab crashed with 'file("close", file())' instruction
507 * Bug #14059 fixed - Lack of performance on deletion of matrix elements.
509 * Bug #14065 fixed - Change "java size" in points in graphics font help page.
511 * Bug #14082 fixed - m=1; m()=1; made Scilab crash.
513 * Bug #14093 fixed - atanh returns NaN for values with an absolute value greater than 1
515 * Bug #14095 fixed - Scilab crashed when a .fig file was loaded with loadmatfile function.
517 * Bug #14096 fixed - Issue with mscanf Function.
519 * 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.
521 * Bug #14105 fixed - New block comments /*...*/ feature was not documented.
523 * Bug #14107 fixed - lstcat of a string and a list did not produce consistent results.
525 * Bug #14109 fixed - lsq function crashed Scilab when Scilab version depended on mkl library.
527 * Bug #14113 fixed - Scilab 6 did not detect infinite loop.
529 * Bug #14135 fixed - crash when running "Graphics -> Matplot -> Java Image" demonstration.
531 * Bug #14141 fixed - recursive insertion: gcf().attribute=value => "Wrong insertion : function or macro are not expected".
533 * Bug #14144 fixed - Scilab crashed with int64(2^63).
535 * Bug #14149 fixed - hdf5 could not restore hypermatrix with good dimensions.
537 * Bug #14150 fixed - The Windows SDK was not found on Windows 8.1.
539 * Bug #14156 fixed - mfscanf returned an empty matrix when datafile contained a header.
541 * Bug #14159 fixed - Matplot crashed Scilab on boolean input.
544 * Bug #14178 fixed - tcl/tk unavailability on MacOS is now documented.
546 * Bug #14181 fixed - Calling intg (or integrate) in a function that is being integrated failed.
548 * Bug #14187 fixed - fscanfMat failed to read format %d, %i and %f.
550 * Bug #14199 fixed - sqrt returned wrong dimension results on matrix with more than dimensions.
552 * Bug #14203 fixed - Improve some error messages, some help pages and some comments.
554 * Bug #14204 fixed - dec2bin ( dec2base ) must show a better error message for too large values.
556 * Bug #14205 fixed - Console crash when assigning uint32 numbers to double matrix.
558 * Bug #14209 fixed - 1:245 created infinite loop.
560 * Bug #14212 fixed - Scilab 6 did not load array of struct from Scilab 5.5 files correctly
562 * Bug #14219 fixed - As bug #14203, improve some error messages, some help pages and some comments.
564 * Bug #14223 fixed - det returned an error when it is used with a singular matrix.
566 * Bug #14225 fixed - command-line option "-quit" should set the processs Exit status
568 * Bug #14228 fixed - Setting rotation_angles property to a matrix of any size did not return error message.
570 * Bug #14232 fixed - Typos in Xcos.
572 * Bug #14245 fixed - Problem in recursive extraction using list with struct.
574 * Bug #14247 fixed - sqrt function did not work on hypermatrices (non regression test).
576 * Bug #14249 fixed - ctrl-c can be used to stop writing control expression.
578 * Bug #14251 fixed - `spec` leaked some memory.
580 * Bug #14253 fixed - Insertion in a struct contained in a list fixed.
582 * Bug #14255 fixed - fftw without MKL leaked in internal withMKL function.
584 * Bug #14300 fixed - Crash when playing with structures.
586 * Bug #14303 fixed - matrix display for large number was not correctly aligned
588 * Bug #14304 fixed - find(x, nmax) returned [] (non regression test).
590 * Bug #14313 fixed - Parser did not create a column separator after spaces and '...' at the end of lines
592 * Bug #14316 fixed - Operation scalar^matrix was identical to scalar.^matrix instead of being expm( log(scalar) * matrix )
594 * Bug #14331 fixed - The third argument of lsq crashed Scilab.
596 * Bug #14348 fixed - Scilab did not open sce/sci file from Windows explorer.
598 * Bug #14361 fixed - Parser did not manage linebreak + blockcomment "... /* a comment */"
600 In 6.0.0 alpha-2 and earlier:
602 * Bug #11511 fixed - error() did non accept string matrix (non regression test).
604 * Bug #12044 fixed - Adding or substracting the empty matrix now return an empty matrix.
606 * Bug #12419 fixed - objects were cleared before the scilab.quit was called
608 * Bug #12928 fixed - int functions with %nan and %inf return wrong values.
610 * Bug #13709 fixed - unique function sometimes returned wrong index values.
612 * Bug #13750 fixed - Calling ss2ss function with flag = 2 returned an error.
614 * Bug #13780 fixed - size with two input and output arguments did not return an error.
616 * Bug #13843 fixed - Scilab crashed when polarplot and plot2d were called with wrong strf value.
618 * Bug #13853 fixed - plzr() returned wrong results for discrete-time systems with a numeric time step.
620 * Bug #13862 fixed - There was no lazy evaluation of 'or' operands in 'if' tests.
622 * Bug #13864 fixed - macro %l_isequal was useless in Scilab 6.
624 * Bug #13872 fixed - Non regression test added for unique function (the indices returned were wrong)
626 * Bug #13890 fixed - getd did not return loaded symbols in previous scope.
628 * Bug #13893 fixed - simp() function did not set a rational denominator at 1 when numerator was equal to zero.
630 * Bug #13894 fixed - Default working directory of the previous session did not work.
632 * Bug #13903 fixed - get_function_path() returned a path with a missing file separator.
634 * Bug #13907 fixed - Avoids the gray background on the right panel of the palette Browser.
636 * Bug #13908 fixed - part(text, n:$) was very slow.
638 * Bug #13919 fixed - Scilab parsed "hidden" as a reserved keyword but it is not used.
640 * Bug #13920 fixed - `getscilabkeywords` help page should be in the "Scilab keywords" section.
642 * Bug #13931 fixed - handle "aarch64" processor for some Linux distribution.
644 * Bug #13944 fixed - The menu "Toolboxes" was missing.
646 * Bug #13983 fixed - who_user returned wrong values.
648 * Bug #13990 fixed - `gettext` did not manage the added '_W' macro.
650 * Bug #14020 fixed - Incorrect carriage return ascii code.
652 * Bug #14022 fixed - getscilabkeywords() was KO (+gateway what() added).
654 * Bug #14023 fixed - It was not possible to concatenate cells.
656 * Bug #14024 fixed - Print of macrofile display a debug message
657 instead of macro prototype.
659 * Bug #14025 fixed - head_comments did not take into account compiled functions.
661 * Bug #14028 fixed - force flag of genlib did not rebuild bin file.
663 * Bug #14036 fixed - tag and user_data properties were not displayed and not documented for light entity.
665 * Bug #14038 fixed - Encoded integers were no longer accepted for list extraction.
667 * Bug #14040 fixed - graphic property setting fails when using array of handles
669 * Bug #14043 fixed - Examples of api Scilab help pages had to be updated (pvApiCtx in gateway prototypes).
671 * Bug #14047 fixed - wrong behaviour of break ( continue ) in if outside of loop.
673 * Bug #14049 fixed - genlib hangs if an unexpected endfunction occurs.
675 * Bug #14055 fixed - overload on matrix concatenation did not called with [].
677 * Bug #14057 fixed - grand(m,n) returned a wrong error and grand(m,n,p) called an overloading function instead of returning an error.
679 * Bug #14058 fixed - Scilab crashed with 'file("close", file())' instruction
681 * Bug #14059 fixed - Lack of performance on deletion of matrix elements.
683 * Bug #14065 fixed - Change "java size" in points in graphics font help page.
685 * Bug #14082 fixed - m=1; m()=1; made Scilab crash.
687 * Bug #14093 fixed - atanh returns NaN for values with an absolute value greater than 1
689 * Bug #14095 fixed - Scilab crashed when a .fig file was loaded with loadmatfile function.
691 * 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.
693 * Bug #14105 fixed - New block comments /*...*/ feature was not documented.
695 * Bug #14107 fixed - lstcat of a string and a list did not produce consistent results.
697 * Bug #14109 fixed - lsq function crashed Scilab when Scilab version depended on mkl library.
699 * Bug #14113 fixed - Scilab 6 did not detect infinite loop.
701 * Bug #14135 fixed - crash when running "Graphics -> Matplot -> Java Image" demonstration.
703 * Bug #14141 fixed - recursive insertion: gcf().attribute=value => "Wrong insertion : function or macro are not expected".
705 * Bug #14144 fixed - Scilab crashed with int64(2^63).
707 * Bug #14149 fixed - hdf5 could not restore hypermatrix with good dimensions.
709 * Bug #14150 fixed - The Windows SDK was not found on Windows 8.1.
711 * Bug #14156 fixed - mfscanf returned an empty matrix when datafile contained a header.
713 * Bug #14159 fixed - Matplot crashed Scilab on boolean input.
715 * Bug #14187 fixed - fscanfMat failed to read format %d, %i and %f.
717 * Bug #14199 fixed - sqrt returned wrong dimension results on matrix with more than dimensions.
719 * Bug #14203 fixed - Improve some error messages, some help pages and some comments.
721 * Bug #14204 fixed - dec2bin ( dec2base ) must show a better error message for too large values.
723 * Bug #14205 fixed - Console crash when assigning uint32 numbers to double matrix.
725 * Bug #14209 fixed - 1:245 created infinite loop.
727 * Bug #14212 fixed - Scilab 6 did not load array of struct from Scilab 5.5 files correctly
729 * Bug #14219 fixed - As bug #14203, improve some error messages, some help pages and some comments.
731 * Bug #14223 fixed - det returned an error when it is used with a singular matrix.
733 * Bug #14225 fixed - command-line option "-quit" should set the processs Exit status
735 * Bug #14228 fixed - Setting rotation_angles property to a matrix of any size did not return error message.
737 * Bug #14232 fixed - Typos in Xcos.
739 * Bug #6064 fixed - scatter function did not exist in Scilab.
741 * Bug #8990 fixed - zoom_auto feature was missing on the plot toolbar.
743 * Bug #9621 fixed - A tlist with undefined fields can now be saved.
745 * Bug #12202 fixed - Mixing int8 and doubles with colon operator led to wrong results.
747 * Bug #13289 fixed - Using non-integer indexes for mlists made Scilab crash.
749 * Bug #13517 fixed - isdef crashed Scilab when called with a vector of strings
750 as input in a function and after a declaration of variable.
752 * Bug #13807 fixed - Invalid margins were computed when figure was not visible.
754 * Bug #13829 fixed - mean and sum functions returned wrong results for hypermatrices.
756 * Bug #13834 fixed - Drawing a high number of strings in a figure generated a Java exception.
758 * Bug #13838 fixed - Sparse and complex substraction made Scilab crash.
760 * Bug #13854 fixed - Under some operating systems, SciNotes did not initialize a new document at startup.
762 * Bug #13866 fixed - There were some issues with FFTW3 library.
764 * Bug #13881 fixed - datatipRemoveAll did not work.
766 * Bug #13924 fixed - rationals r1==r2 and r1~=r2 might sometimes be wrong.
768 * Bug #13925 fixed - SciNotes used the wrong paired bracket highlight style.
770 * Bug #13941 fixed - Internal timestamps of HDF5 files prevented having a fixed
771 hash for an unvarying set of saved objects.
773 * Bug #13942 fixed - Now the palette browser tree is always resized when
776 * Bug #13971 fixed - A space has been added between Scilab prompt and cursor.
778 * Bug #13972 fixed - Wildcard ('*') was not managed in printf expressions.
780 * Bug #14043 fixed - Gateway C prototype changed from int sci_...(char *fname, unsigned long l)
781 to sci_...(char *fname, void* pvApiCtx). Variable name has to be
782 exactly "pvApyCtx" when macros are used in a gateway.
784 * Bug #14044 fixed - MALLOC.h is now renamed to sci_malloc.h.