1 Changes between version 5.5.0-beta-1 and 5.5.0
2 ==============================================
7 * The figures "visible" property now also applies to uicontrols.
8 In previous releases, only axes were managed by this property setting.
10 * New functions introduced:
11 - jcreatejar - Creates a Java archive (JAR) from a set of files / directories
17 * Bug #2067 fixed - Scilab crashed when plot was called with a large numerical value.
19 * Bug #4401 fixed - isnum did not recognize all constants or some complex numbers.
21 * Bug #5016 fixed - condestsp could return different results when repeated calls were performed.
23 * Bug #6689 & #6690 fixed - grand now works with complexes, polynomials, booleans, integers, sparses and strings,
24 and can take row vectors, matrices and hypermatrices of thoses types.
26 * Bug #6824 fixed - resize_matrix did not manage hypermatrices.
28 * Bug #7038 fixed - Toolbar button managing datatip mode did not toggle.
30 * Bug #7047 fixed - milk_drop is now obsolete. It will be removed in Scilab 5.5.1, but will be kept as a demo.
32 * Bug #7570 fixed - The switch criterion on x and y is now explicited in beta() help page.
34 * Bug #7705 fixed - In the Genetic algorithms help pages, documented the
35 "dimension", "minbounds" and "maxbounds" fields.
37 * Bug #7858 fixed - variance and variancef can now return the mean of the input
38 in a new output argument and take the a priori mean as input.
40 * Bug #7879 fixed - string now accepts plist type, and printing a plist displays that string.
42 * Bug #8031 fixed - cdfgam error message fixed.
44 * Bug #8231 fixed - xrect help page did not say that clipping property was inherited.
46 * Bug #8337 fixed - mtlb_rand now uses the "uniform" rule, whatever the random rule set is.
48 * Bug #9110 fixed - Examples and references to other functions added in the Statistics help pages.
50 * Bug #9627 fixed - Arguments checking added in optimsimplex_* functions.
52 * Bug #9697 fixed - Printed information for optim "qn" and "gc" with bounds and imp=1 fixed.
54 * Bug #10175 fixed - Clearer example added for sp2adj to adj2sp conversion (and backwards conversion).
56 * Bug #10234 fixed - reglin function moved from CACSD to Statistics module.
58 * Bug #10271 fixed - ordmmd now checks the consistency of the third input argument with the
59 input matrix defined by the two first input arguments.
61 * Bug #10273 fixed - spchol help page now displays an example showing how to use its output arguments.
63 * Bug #11571 fixed - x_mdialog did not let the Look&Feel select the window size.
65 * Bug #11680 fixed - GUI functions in Scilab 5.4.X were much slower than in Scilab 5.3.3.
67 * Bug #12682 fixed - Key events were disabled after zooming.
69 * Bug #12769 fixed - xset("window", 1) did not set the current axes.
71 * Bug #12882 fixed - Some help pages were not clear.
73 * Bug #12910 fixed - Some typos fixed.
75 * Bug #12938 fixed - No java compiler was available in Linux binary version.
77 * Bug #12943 fixed - Datatips misworked when 2D plots were rotated.
79 * Bug #12948 fixed - When host is not found, getURL caused a Crash To Desktop.
81 * Bug #12950 fixed - getURL ignored the proxy settings on Windows.
83 * Bug #12951 fixed - Interactive zoom was broken.
85 * Bug #12956 fixed - splitURL with no protocol in URL provokes an access
88 * Bug #12957 fixed - splitURL and getURL were not declared as new 5.5 functions.
90 * Bug #12962 fixed - xinfo documentation was not clear.
92 * Bug #12963 fixed - drawaxis did not place the axis correctly.
94 * Bug #12971 fixed - getURL downloaded file name was wrong.
96 * Bug #12973 fixed - Exception occuring when clicking on a figure at creation fixed.
98 * Bug #12976 fixed - getURL returns a file name instead of a file path.
100 * Bug #12978 fixed - exportUI returned an error when input argument was a figure handle.
102 * Bug #12979 fixed - exportUI did not work with vectorial export.
104 * Bug #12990 fixed - GED features conflicted with figure events.
106 * Bug #13000 fixed - []./int8(3) and on int8(3)./[] led to an endless recursive.
108 * Bug #13003 fixed - String to enum converter added to Java external objects.
110 * Bug #13004 fixed - Debug infos were printed on an error with eoj.
112 * Bug #13005 fixed - jcompile did not use the classpath to compile.
114 * Bug #13007 fixed - Compilation errors were not returned by jcompile.
116 * Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
118 * Bug #13010 fixed - Wrong class was returned by jcompile (with ecj).
120 * Bug #13011 fixed - ilib_compile failed under MacOS X 10.9.
122 * Bug #13012 fixed - Vectorial export of rotated strings was wrong.
124 * Bug #13014 fixed - Update of the Efficiency inner variable improved in optim_ga.
126 * Bug #13015 fixed - Computation of Efficiency inner variable improved in optim_ga.
128 * Bug #13022 fixed - Vectorial export did not clip large segments.
130 * Bug #13027 fixed - There was no autowrap into array in JIMS.
132 * Bug #13032 fixed - Fixed CMATVIEW help example and created one for CMAT3D.
134 * Bug #13033 fixed - -1 could not be used as nax argument in plot2d.
136 * Bug #13036 fixed - Help page associated to history browser was wrong.
138 * Bug #13041 fixed - Wrong result was returned for "integer scalar" minus "integer vector".
140 * Bug #13042 fixed - Texts in graphics were not correctly centered.
142 * Bug #13047 fixed - jcompile did not allow class reloading.
144 * Bug #13049 fixed - New handled protocols added in links in SciNotes.
146 * Bug #13053 fixed - datatipCreate did not return datatip handle.
152 * xcos_debug_gui function added for a simple use of the Debug block.
154 * Bug #12423 fixed - Data types of SWITCH2_m were not documented.
156 * Bug #12998 fixed - 'ans' was not ignored in the context results.
158 * Bug #13006 fixed - Selection to superblock (in_f and out_f) was failing.
160 * Bug #13030 fixed - Selection to superblock did not reset the origin.
163 Changes between version 5.4.1 and 5.5.0-beta-1
164 ==============================================
169 * New special functions:
170 - erfi - The imaginary error function.
171 - dawson - Compute the Dawson function (scaled imaginary error).
173 * New functions introduced:
174 - getURL - Download a URL (HTTP, HTTPS, FTP...)
175 - splitURL - Split a URL (HTTP, HTTPS, FTP...)
176 - cov - Covariance matrix. Deprecates mvvacov. See bug #11896 fixed.
177 - ismatrix - Check if a variable is a matrix. See bug #10456 fixed.
178 - isrow - Check if a variable is a row vector. See bug #10456 fixed.
179 - iscolumn - Check if a variable is a column vector. See bug #10456 fixed.
180 - issquare - Check if a variable is a square matrix. See bug #10456 fixed.
181 - cross - Vector cross product. See bug #9941 fixed.
182 - members - Number of occurrences and linear indexes of common values between
183 two matrices of the same type.See bug #12705 fixed.
185 * Add a complete set of functions to read and write any HDF5 file from Scilab.
188 - daskr - differential-algebraic system solver with rootfinding 'daskr', using
189 BDF methods with direct and preconditioned Krylov linear solvers, based on ODEPACK.
191 * Based on JIMS external module, Scilab provides functions to interact
194 * erf, erfc, erfcx and calerf functions now support complex arguments.
196 * isnum has been redesigned in native code. Performance improvements up to 130x.
199 * Allow the usage of the '$' keyword in part function.
201 * The histplot command can now be used with the option polygon=%t/%f to add the
202 frequency polygon chart (thanks to Mehran Khorshidi).
204 * Multi level completion on mlist, struct, XML structures...
206 * Variable browser improvements:
207 - The variable browser also shows the size of integers and the user type of
209 See bugs #12523 and #10409
210 - It is now possible to delete variables from the variable browser.
212 - A user can now plot variables from the variable browser (this functionality was
213 already available in the variable editor).
215 * Added lighting effect for plot of surfaces. Lighting can be enabled
216 creating light objects or disabled by deleting them. The following function
218 - light - Creates a light graphic object.
221 - Multiple domains in localization managed.
222 - addlocalizationdomain function added for a new domain creation.
223 - Optional parameter added to gettext to manage domains.
224 - tbx_generate_pofile and tbx_build_localization added to create localization files for
227 * Windows Solution updated to Visual Studio 2012.
229 * -keepconsole option added for Scilab Windows to facilitate debugging.
230 Calling Scilab with this option will leave the console box window opened at startup.
232 * License update: switch to the CeCILL 2.1.
234 * test_run() can now separate 32bits systems from 64bits ones.
240 * New calling sequence allowed for nicholschart: nicholschart(gains, phases, colors).
243 * qp_solve can now take up to 5 output arguments. The last one is an error flag,
244 if it is present, then the function will display a warning instead of an error.
247 * graypolarplot has been improved in terms of performances and rendering.
250 * nthroot is now vectorizable.
253 * New optional output argument for routh_t.
257 Differential Equations
258 ======================
260 * Netlib's Quadpack, used for definite integration, has been updated to match the upstream.
266 * Autosave feature can now use %date to append the current date to the backup filename
273 * New DAE solver: DDaskr, using BDF methods with direct Newton and preconditioned Krylov
274 linear solvers, which includes rootfinding.
275 It is available from dae function.
277 * In Modelica initialization GUI, inputs (eg. sensor) were not handled.
279 * Sundials updated to the "2.5.0" version, keeping our modifications.
281 * JGraphX updated to the "2.1.0.7" version, updating our hooks performance.
283 * API changed in the scicos_block4 interface: the uid value is not available
284 inside the simulation function.
286 * xcosAddToolsMenu added to let the user perform some actions on the graph.
288 * CBLOCK4 block added to the "User-Defined Functions"
294 * Some Xcos specific content added to xcos_toolbox_skeleton help pages.
300 * Minimal version of Flexdock (1.2.4) enforced.
303 Obsolete & Removed Functions
304 ============================
306 * Scilab 5.5.X family will be the latest family working under Windows XP/2003.
308 * Vector ^ scalar syntax declared as obsolete. See bug #11524
310 * The third argument of poly function will be more strict.
311 Only the following strings are allowed: "roots", "coeff", "c", "r".
313 * Option and direction arguments of gsort will be more strict in all cases.
314 Only the following strings are allowed:
315 - option: "r" "c" "g" "lr" "lc"
316 - direction : "d" "i"
318 * nfreq tagged as obsolete. Will be removed in Scilab 5.5.1.
319 Please use tabul instead.
321 * IsAScalar tagged as obsolete. Will be removed in Scilab 5.5.1.
322 Please use isscalar instead.
324 * chart tagged as obsolete. Will be removed in Scilab 5.5.1.
325 Please use nicholschart instead.
327 * Second output argument of add_param tagged as obsolete. Will be removed in Scilab 5.5.1.
329 * mvvacov tagged as obsolete. Will be removed in Scilab 6.0.0.
330 Please use cov instead.
332 * dft removed, please use fft instead.
334 * sscanf removed, please use msscanf instead.
336 * fscanf removed, please use mfscanf for files opened with mopen or read for files opened
339 * fprintf removed, please use mfprintf for files opened with mopen or write for files
340 opened with file instead.
342 * milk_drop tagged as obsolete. Will be removed in Scilab 5.5.1.
348 * paramfplot2d: When theta input argument was a column vector, an error occurred.
350 * Bug #2267 fixed - Wrong error message when ticks locations and labels did not have the
353 * Bug #2416 fixed - Particular case (string([]) returns []) has been added in string help
356 * Bug #3511 fixed - strindex did not return all occurrences in regexp mode.
358 * Bug #3928 fixed - An error was returned when a matrix was flipped along the third
361 * Bug #4042 fixed - squeeze returned a hypermatrix instead of a matrix when at least one
362 dimension was equal to 1.
364 * Bug #4085 fixed - num2cell help page added.
366 * Bug #4229 fixed - delip did not return an error if one element of its first input
367 argument was negative.
369 * Bug #4383 fixed - csim with "step" and "impuls" now works with direct feedthrough.
371 * Bug #4481 fixed - iir help page updated to precise that frq can be a scalar.
373 * Bug #4731 fixed - lqr failed when the time domain of an input was a number.
375 * Bug #4743 fixed - Graphics with too big or too small values did not work.
377 * Bug #5073 fixed - New parameter added in strtod function (decimal separator).
379 * Bug #5205 fixed - permute was slow for large hypermatrices.
381 * Bug #5207 fixed - grand can now return a hypermatrix.
383 * Bug #5365 fixed - makecell help page was in the "compatibility functions" directory
384 instead of being in "data_structures".
386 * Bug #5539 fixed - sylv help page was wrong in discrete-time cases.
388 * Bug #5616 fixed - typeof(uiCreateTree(...)) returned "Tree" instead of "uitree".
390 * Bug #5694 fixed - numdiff help page clarified.
392 * Bug #5779 fixed - xnumb number format was too small (+ unit test added).
394 * Bug #6037 fixed - macrovar help page improved.
396 * Bug #6168 fixed - zpbutt, zpch1, zpch2 and zpell help pages were unclear.
398 * Bug #6390 fixed - The "external" argument of odecd was not well documented and
401 * Bug #6427 fixed - full([%T %F]) returned an error message.
403 * Bug #6466 fixed - Example with vectorized input added in mprintf and msprintf help pages.
405 * Bug #6638 fixed - The profiler output was incorrect by a factor of 1000 under Windows.
407 * Bug #6693 fixed - modulo did not accept polynomial inputs. Help page was not updated.
409 * Bug #6752 fixed - unit test scilab.tst has been split in different tests.
411 * Bug #6840 fixed - New line_style added.
413 * Bug #6988 fixed - Error messages in modules/data_structures/src/c/hmops.c were not
416 * Bug #7026 fixed - There was no unit test for plot2d.
418 * Bug #7080 fixed - Some graphic macros did not use standard error messages.
420 * Bug #7204 fixed - geomean applied to a hypermatrix gave wrong results.
422 * Bug #7206 fixed - If the second input argument of meanf function was a hypermatrix,
423 this function returned an error.
425 * Bug #7296 fixed - %nan, %inf and -%inf enabled for the cdf* functions.
427 * Bug #7411 fixed - clf forgot to turn off the datatip mode.
429 * Bug #7486 fixed - LAPACK versions of DGELSY and ZGELSY now used.
431 * Bug #7596 fixed - A same error happening in different places now displays the same
434 * Bug #7648 fixed - CDF functions now display a warning for non integer
435 "degrees of freedom" argument.
437 * Bug #7655 fixed - An example added in type help page, for type(X)=11 and type(X)=13.
439 * Bug #7684 fixed - Introduction demonstration splitted into subsections.
441 * Bug #7781 fixed - The second parameter of iqr function had no effect.
443 * Bug #7782 fixed - lcm and gcd help pages improved to tell the user how to use both
446 * Bug #7824 fixed - title function properties did not support an indexed color.
448 * Bug #7826 fixed - chart tagged as obsolete.
450 * Bug #7828 fixed - Slight improvements in nicholschart.
452 * Bug #7848 fixed - The third argument of correl function is now optional.
454 * Bug #7877 fixed - iirgroup function fixed.
456 * Bug #7927 fixed - Output "flag" in qmr function was not well documented.
458 * Bug #7960 fixed - plzr could not produce pole zero plot for a simple transfer function.
460 * Bug #8058 fixed - The user can now set the tolerances of intc function.
462 * Bug #8098 fixed - cumsum could not be applied to rational matrices.
464 * Bug #8162 fixed - Area of stability of plzr was wrong for continuous systems
467 * Bug #8211 fixed - Parameters module demonstration finalized.
469 * Bug #8234 fixed - strtod did not return an empty matrix when the input argument was an
472 * Bug #8264 fixed - Matlab to Scilab dictionary help page updated for atan2.
474 * Bug #8319 fixed - dbphi(hypermat) and phasemag(hypermat) returned a matrix instead of
477 * Bug #8373 fixed - clear can now handle a matrix of strings argument.
479 * Bug #8415 fixed - optim_moga, optim_nsga, optim_nsga2 can now take list as input
480 arguments, as explained in their help pages.
482 * Bug #8462 fixed - bvodeS could make Scilab unstable.
484 * Bug #8470 fixed - bvode displayed some output in terminal window and not in
487 * Bug #8479 fixed - The latest Saxon version was not supported.
489 * Bug #8511 fixed - sprand now uses grand instead of rand and grand functions. Internal
490 state of the random generator is no more changed.
492 * Bug #8561 fixed - ddassl, ddasrt, ddaskr: abs and rel tolerance sizes are now checked.
494 * Bug #8597 fixed - grand/clcg4 could display uncontrolled messages as warning.
496 * Bug #8607 fixed - Some error messages in modules/overloading/macros were not standard
499 * Bug #8614 fixed - Unit test for barhomogenize added.
501 * Bug #8636 fixed - roots help page updated (default algorithm value was wrong).
503 * Bug #8667 fixed - The handling of %nan in min, max, median functions was not properly
506 * Bug #8680 fixed - "end" output argument of regexp function has been changed.
508 * Bug #8687 fixed - typeof function failed on uint8, depending on the format
511 * Bug #8695 fixed - optim_ga used old (initial) values instead of newly-computed ones.
513 * Bug #8778 fixed - Call_ScilabOpen, TerminateScilab could not be called more
514 than 80 times in a loop.
516 * Bug #8779 fixed - gsort did not preserve the order of equal elements, in
519 * Bug #8820 fixed - squeeze did not return a matrix when the number of dimensions
520 of the result was less or equal to 2.
522 * Bug #8824 fixed - taucs_chfact returned a segfault (not the case in nwni mode).
524 * Bug #8840 fixed - fileparts did not manage matrix of strings.
526 * Bug #8856 fixed - Non regression test added for [k,l,m,...]=find(a==5).
527 Non regression test of bug #476 updated.
529 * Bug #8857 fixed - Non regression test of bug #477 updated.
531 * Bug #8858 fixed - Non regression test of bug #480 updated.
533 * Bug #8862 fixed - mget and mput could not read and write 64 bit data from
536 * Bug #9004 fixed - bitcmp function called with one input argument returned an error.
538 * Bug #9020 fixed - exists function did not accept matrix as first input argument.
540 * Bug #9059 fixed - tbx_build_macros and genlib did not stop even if an error occurred.
542 * Bug #9109 fixed - nfreq tagged as obsolete.
544 * Bug #9158 fixed - zeros called with a big number returned an empty matrix instead
547 * Bug #9208 fixed - Added three optional output arguments to optim,
548 to retrieve #iterations, #evaluations and a termination indicator.
550 * Bug #9385 fixed - The type checking in trigonometric functions has been added.
552 * Bug #9394 fixed - is_param recognized "plist" as an existing field.
554 * Bug #9395 fixed - add_param did not check its input arguments.
556 * Bug #9396 fixed - add_param accepted duplicate keys.
558 * Bug #9459 fixed - Default values of the optional plot3d arguments were not documented.
560 * Bug #9537 fixed - optimbase_configure only allowed row vectors as initial value.
561 Column vectors now allowed by transposing them.
563 * Bug #9538 fixed - optimbase_checkshape only allowed row vectors as output arguments of
564 cost function. Column vectors are now allowed by transposing them.
566 * Bug #9577 fixed - Setting neldermead_configure("-numberofvariables") is now optional,
567 setting neldermead_configure("-x0") initializes -numberofvariables
570 * Bug #9601 fixed - Cylinder demonstration fixed.
572 * Bug #9688 fixed - optim could crash when "imp" option was < 0. It is now set to 0 in
575 * Bug #9690 fixed - The "imp" option for optim could crash Scilab and was not consistent
578 * Bug #9691 fixed - "imp" option in optim help page was poorly documented.
580 * Bug #9694 fixed - Example in optim help page fixed to display correct counters.
582 * Bug #9702 fixed - Contrary to what optim help page stated, the "gc" algorithm does use
583 the "epsx" parameter.
585 * Bug #9780 fixed - gmres solver did not run with complex systems.
587 * Bug #9788 fixed - neldermead can now produce a warning when it fails to converge,
588 thanks to a new input argument "warn".
590 * Bug #9821 fixed - getrelativefilename did not manage matrix of strings.
592 * Bug #9851 fixed - Error message occurred because of a cut-off frequency of 0.25Hz
595 * Bug #9859 fixed - It was not possible to draw arrows in 3-D using xarrows.
597 * Bug #10146 fixed - In SciNotes, 'help on keyword' moved from bottom to top in the popup
600 * Bug #10180 fixed - det was not defined for sparse matrices.
602 * Bug #10213 fixed - sci2exp help page updated to document the impact of format function.
604 * Bug #10216 fixed - Invalid syntaxes for zeros, ones, eye, rand, like zeros(2,:).
606 * Bug #10226 fixed - When a // <empty session> line was deleted, all sessions
607 histories were folded.
609 * Bug #10254 fixed - Slight improvements in ones help page.
611 * Bug #10269 fixed - qp_solve can now take up to 5 output arguments. The last one is an
612 error flag, if it is present, then the function will issue a warning
615 * Bug #10276 fixed - qp_solve segfaulted with large matrices.
617 * Bug #10287 fixed - Error message added for complex expression as input argument of
620 * Bug #10305 fixed - Comparison of lists with empty items returned an error message.
622 * Bug #10596 fixed - exit(xxx) from Scilab failed.
624 * Bug #10818 fixed - home, %e, %t, %f, %z and %s help pages added.
626 * Bug #10823 fixed - fullpath returned different results under Windows and Linux for
629 * Bug #10862 fixed - Add a without Internet connection installation
630 global configuration in the installer.
632 * Bug #10866 fixed - det was not equivalent to detr for rational matrices.
634 * Bug #10906 fixed - Typo fixed in cls2dls help page.
636 * Bug #10930 fixed - The comments in armax function were in French.
638 * Bug #10995 fixed - Typo fixed in grand help page for Gamma law argument.
640 * Bug #11065 fixed - The second output argument of unique function contained a wrong result.
642 * Bug #11139 fixed - conj was not defined for sparse matrices (+ unit test added).
644 * Bug #11308 fixed - Calling sequences in dsearch help page were wrong.
646 * Bug #11343 fixed - The "isoview" figure property did not work when the axes
647 margins had been modified.
649 * Bug #11648 fixed - Copying graphic via the clipboard did not work.
651 * Bug #11766 fixed - nthroot has been added to m2sci help page.
653 * Bug #11792 fixed - Lists can be accessed with non integer indexes (list help page
656 * Bug #11869 fixed - "Environment" was not localized in preferences.
658 * Bug #11885 fixed - Each rand has been changed to grand in genetic algorithms and
659 simulated annealing functions.
661 * Bug #11891 fixed - Fisher ratio could be inaccurate for one-way ANOVA.
663 * Bug #11997 fixed - In case of invalid variable name, save function now returns an error
664 instead of a compatibility warning.
666 * Bug #12034 fixed - max function did not manage empty matrices.
668 * Bug #12045 fixed - repmat returned wrong results if the values of an input matrix were
671 * Bug #12070 fixed - Removing a module can now be done in an on-line mode even if
672 it has been installed in an off-line mode.
674 * Bug #12080 fixed - lsqrsolve always printed messages.
676 * Bug #12085 fixed - Under Windows, csvWrite wrote wrong EOL.
678 * Bug #12114 fixed - libstdc++ is now compiled as static instead of using the
679 library from thirdparty.
681 * Bug #12118 fixed - ode could take complex externals.
683 * Bug #12143 fixed - "stop entity picker" (ged(11)) returned an error message.
685 * Bug #12150 fixed - datatipCreate failed with one single point.
687 * Bug #12163 fixed - unzoom did not work with a single input argument.
689 * Bug #12212 fixed - Export of a polyline in 2-D broke it into several segments.
691 * Bug #12326 fixed - There was no way to set LaTeX font size in preview.
693 * Bug #12349 fixed - In SciNotes, when the view was splitted, removing a char made the
696 * Bug #12376 fixed - Exec & edit buttons in the help pages examples were sometimes
699 * Bug #12413 fixed - ATOMS packages could not be removed if ATOMS had never been on-line.
701 * Bug #12415 fixed - PATH environment variable grew when using call_scilab in a loop.
703 * Bug #12426 fixed - By using addErrorMessage, a random string error could be displayed.
705 * Bug #12433 fixed - show_pixmap function was removed from Scilab but still used in some
708 * Bug #12443 fixed - The behavior of mopen in text file mode has been documented
711 * Bug #12463 fixed - Wrong specification for rect=[x,y,w,h] argument in xstringb
714 * Bug #12470 fixed - Variable browser was not refreshed after loading an environment.
716 * Bug #12473 fixed - Problems with "é" in mkdir French help page.
718 * Bug #12475 fixed - csvRead did not support double quoted fields.
720 * Bug #12490 fixed - plot did not call clf; in its help page example producing a
723 * Bug #12506 fixed - In SciNotes, a miscolorization could occurred when returned values
726 * Bug #12508 fixed - Wrong error message in rand function fixed.
728 * Bug #12518 fixed - Polynoms were not displayed by default in the variable browser.
730 * Bug #12520 fixed - Improve the description of the size in the variable browser.
732 * Bug #12527 fixed - Scilab user functions were not listed in the variable browser.
734 * Bug #12547 fixed - In SciNotes, lines were wrongly numbered with splitted function
737 * Bug #12548 fixed - Duplicated code in xmltoformat removed.
739 * Bug #12550 fixed - optimbase and optimsimplex help pages were not standard.
741 * Bug #12551 fixed - Stack problem with diary([],"pause") and diary([],"resume") fixed.
743 * Bug #12556 fixed - A fatal error occurred when calling set with wrong instructions.
745 * Bug #12557 fixed - Valid function names were not specified in function and functions
748 * Bug #12564 fixed - Compile and run javasci help page was not clear about needed packages.
750 * Bug #12581 fixed - isfield could not support mlist or tlist.
752 * Bug #12589 fixed - Call sequence for spzeros & spones were missing in French
755 * Bug #12592 fixed - Scilab hung with plot(-0).
757 * Bug #12593 fixed - A wrong error message was returned when running genlib with an
758 error in the sci file.
760 * Bug #12600 fixed - mput did not manage unsigned integer.
762 * Bug #12606 fixed - Overloads for grand were not standard.
764 * Bug #12613 fixed - gsort did not return correct results with %nan.
766 * Bug #12614 fixed - Helpbrowser was not launched in EDT.
768 * Bug #12615 fixed - Graphics seemed to be freezed after a call to plot/bar/barh with
769 a bad LineSpec argument.
771 * Bug #12624 fixed - In case of errors in Scilab macros, "make check-TESTS" did not fail
774 * Bug #12627 fixed - At restoration, a window could be out of the screen.
776 * Bug #12629 fixed - The last example of csim help page defined a function called
777 input (overwriting the Scilab one).
779 * Bug #12631 fixed - A "see also" link has been added from progressionbar to waitbar
782 * Bug #12634 fixed - ATOMS modules could not be installed from an archive file
783 already existing in SCI/contrib/archives in "offline" mode.
785 * Bug #12637 fixed - In some help pages, some signal processing functions were not in
788 * Bug #12639 fixed - justify([], position) returned an error instead of [].
790 * Bug #12641 fixed - graypolarplot has been fully vectorized as it was too slow.
792 * Bug #12657 fixed - Computation of v1.^v2 is now done without any memory allocation,
793 when v1 and v2 are real arrays, v1 >= 0 and v2 integer.
795 * Bug #12668 fixed - Undocking SciNotes led to an exception.
797 * Bug #12678 fixed - nthroot now accepts vector/matrix as second argument.
799 * Bug #12679 fixed - Argument type check added in gcd and lcm.
801 * Bug #12686 fixed - Error returned by diff fixed.
803 * Bug #12702 fixed - When no extra parameters were needed in the cost function,
806 * Bug #12703 fixed - In SciNotes, common shortcuts 'SHIFT DELETE', 'SHIFT INSERT'
809 * Bug #12705 fixed - members function added. It allows to find the number of occurrences
810 and linear indexes for common values between two matrices of the
813 * Bug #12706 fixed - A wrong size of a matrix as input argument of cross function was
816 * Bug #12708 fixed - Incorrect display in SciNotes preferences fixed (onmouseover styles).
818 * Bug #12712 fixed - In SciNotes, autosaving can now use %date to append the current
819 date to the backup filename.
821 * Bug #12715 fixed - Variable cross in pspect and cspect has been renamed because of
822 conflicts with cross function.
824 * Bug #12736 fixed - In SciNotes, the Completion window appeared only in first tab.
826 * Bug #12747 fixed - legendre now accepts the -1 and 1 values for third argument.
828 * Bug #12749 fixed - fscanfMat help page updated.
830 * Bug #12758 fixed - Focus issue with plot3d fixed.
832 * Bug #12761 fixed - The https:// protocol was not supported on ATOMS.
834 * Bug #12772 fixed - eigs failed when trying to solve a sparse matrix eigen value problem.
836 * Bug #12774 fixed - Various typos fixed.
838 * Bug #12775 fixed - Some related functions were not listed in "See also" section of
841 * Bug #12778 fixed - Insertion of an empty matrix in an integer matrix led to a
844 * Bug #12779 fixed - savewave had a miscoding in the internal function write_wavedat.
846 * Bug #12783 fixed - There were some inconsistent error messages in dsearch.
848 * Bug #12790 fixed - Links to ZCOS files in documentation were broken.
850 * Bug #12791 fixed - More information is now given in case of failure during the ATOMS
853 * Bug #12794 fixed - calfrq.sci code did not follow Scilab standard.
855 * Bug #12795 fixed - Typos fixed in CACSD help page.
857 * Bug #12800 fixed - Typo fixed in Polynomials help page.
859 * Bug #12804 fixed - Typos fixed in routh_t help page.
861 * Bug #12807 fixed - Display of showprofile improved.
863 * Bug #12808 fixed - Add missing </td> in documentation generation (note, warning, ...).
865 * Bug #12813 fixed - flipdim function extended to any type of input data.
867 * Bug #12814 fixed - Improvements of pertrans help page.
869 * Bug #12815 fixed - levin redefined cov as a variable.
871 * Bug #12816 fixed - Numbers pasted in editvar were not parsed according to locale.
873 * Bug #12818 fixed - Segfault in set function with invalid property values dimension.
875 * Bug #12823 fixed - In help generation (toolbox) links were not correctly handled.
877 * Bug #12827 fixed - noisgen help page improved.
879 * Bug #12828 fixed - routh_t gave a wrong result if the first element of a row was zero.
881 * Bug #12829 fixed - New optional output argument added for routh_t function.
883 * Bug #12830 fixed - In SciNotes, it was not possible to execute a replace action
884 from the caret position.
886 * Bug #12831 fixed - In SciNotes toolbar, there was no button to open code navigator.
888 * Bug #12833 fixed - In SciNotes, there was no autoscroll when searching a pattern.
890 * Bug #12836 fixed - Error fixed in strcmpi help page.
892 * Bug #12839 fixed - Typo fixed in getVariablesOnStack help page.
894 * Bug #12840 fixed - Typo fixed in number_properties.xml help page.
896 * Bug #12852 fixed - Visual Studio 2012 SDK configuration was incorrect.
898 * Bug #12858 fixed - Typo fixed in debug and pause French help pages.
900 * Bug #12859 fixed - Fixed optional argument in isdef help page.
902 * Bug #12863 fixed - size(state-space, "r") returned an error.
904 * Bug #12875 fixed - phasemag returned an error for input vector containing zeros.
906 * Bug #12887 fixed - Scilab hung with auto_clear set to on and log_flags set to true.
908 * Bug #12888 fixed - sysdiag was not documented about block diagonal matrices build.
910 * Bug #12906 fixed - champ and champ1 help pages updated
912 * Bug #12909 fixed - Completion on (mt)list led to a crash.
914 * Bug #12911 fixed - Matlab to Scilab dictionary help page updated for eig.
916 * Bug #12913 fixed - linspace returned an error if the third argument was an integer type
919 * Bug #12916 fixed - power help page improved.
921 * Bug #12919 fixed - Rotation on plots was disabled after using menus.
923 * Bug #12927 fixed - ones function could not take integer type input.
925 * Bug #12931 fixed - ATOMS redefined "message" keyword.
931 * Bug #7350 fixed - The I/O ports numbering of a superblock was not updated
932 when a new port was dropped.
934 * Bug #8570 fixed - "Region to superblock" has been renamed to
935 "Selection to superblock".
937 * Bug #11518 fixed - CLR block-text was displayed out of the bounding box
940 * Bug #11776 fixed - CMSCOPE did not take into account label&Id parameter.
942 * Bug #12359 fixed - Xcos files have been converted to ZCOS to gain some space.
944 * Bug #12384 fixed - Using a Modelica part linked with an explicit link to
945 another Modelica part led to an algebraic loop error.
947 * Bug #12387 fixed - The "Modelica initialize" setup menu option did not blur
950 * Bug #12414 fixed - SWITCH_m block had different behaviors
951 for different types of inputs.
953 * Bug #12424 fixed - Calling lincos on a derivative block made Scilab crash.
955 * Bug #12460 fixed - xcosPalGenerateAllIcons sometimes crashed Scilab.
957 * Bug #12461 fixed - Cancelling zoom out by zooming in did not fully work.
959 * Bug #12561 fixed - SELECT_m and RELAY_f did not behave as expected.
961 * Bug #12568 fixed - "Recent files" menu entry is now below the "Open" one.
963 * Bug #12590 fixed - Block shape style was removed on file loading.
965 * Bug #12603 fixed - ZCOS files could contain blocks with modified (eg. invalid)
968 * Bug #12619 fixed - DLR discrete block did not display LaTeX formula
969 like CLR continuous block.
971 * Bug #12651 fixed - The 'nw' scicos_simulate option did not work while
972 passing a previous Info simulation status.
974 * Bug #12664 fixed - Inverted pendulum French localization in the Xcos demonstrations was
977 * Bug #12667 fixed - 'Recent Files' menu was not localized.
979 * Bug #12731 fixed - Code generation produced erroneous block.
981 * Bug #12732 fixed - Improper Copyright comments in the files were generated by the code
984 * Bug #12796 fixed - There was some mismatches between implicit
985 and explicit ports of superblocks.
987 * Bug #12797 fixed - I/O blocks generated by "Selection to Superblocks" had
990 * Bug #12868 fixed - There were several problems with PULSE_SC block.
992 * Bug #12869 fixed - min and max were not defined but used in Xcos generated code.
994 * Bug #12873 fixed - Scicos_flat produced an unexpected error after a diagram
997 * Bug #12874 fixed - CSCOPE marks sizes were too small.
999 * Bug #12877 fixed - Incorrect output port dimensions and types in GENSIN_f, GENSQR_f,
1000 STEP_FUNCTION and STEP blocks fixed.
1002 * Bug #12924 fixed - Blocks type 2004 was not handled as a valid block type.
1004 * Bug #12934 fixed - Separate compilation of a superblock could fail due to under
1005 determined signal sizes.