1 Changes between version 5.5.0 and 5.5.1
2 =======================================
7 * Bug #10555 fixed - Scilab failed to build with some configure options.
9 * Bug #13291 fixed - xmltojar([],[],'ja_JP') might lead to a crash when the
10 locale was not available system-wide.
12 * Bug #13333 fixed - Selecting "Offline mode" in Scilab installer installed
13 Scilab in "Command line mode" (without GUI modules).
15 * Bug #13378 fixed - The "Console" handle display was not homogeneous with others.
17 * Bug #13381 fixed - eigs was failing when using a function as first input argument.
19 * Bug #13383 fixed - newaxes help page did not mention the call with a graphic
22 * Bug #13384 fixed - uicontrol help page did not mention axes could be contained
23 in frame style uicontrols.
29 * Bug #9996 fixed - The RELATION_OP box drawn in the work space is not compliant to the programming.
31 * Bug #12751 fixed - cdummy_ entry point was not found when using Code Generation.
34 Changes between version 5.4.1 and 5.5.0
35 =======================================
40 * New special functions:
41 - erfi - The imaginary error function.
42 - dawson - Compute the Dawson function (scaled imaginary error).
44 * New functions introduced:
45 - getURL - Download a URL (HTTP, HTTPS, FTP...)
46 - splitURL - Split a URL (HTTP, HTTPS, FTP...)
47 - cov - Covariance matrix. Deprecates mvvacov. See bug #11896.
48 - ismatrix - Check if a variable is a matrix. See bug #10456.
49 - isrow - Check if a variable is a row vector. See bug #10456.
50 - iscolumn - Check if a variable is a column vector. See bug #10456.
51 - issquare - Check if a variable is a square matrix. See bug #10456.
52 - cross - Vector cross product. See bug #9941.
53 - members - Number of occurrences and linear indexes of common values between
54 two matrices of the same type. See bug #12705.
55 - jcreatejar - Creates a Java archive (JAR) from a set of files / directories
56 - ilib_build_jar - Builds Java packages from sources into a JAR file
57 - ifftshift - Inverses FFT shift
58 - unwrap - Unwraps/unfolds a Y(x) profile
59 - getPreferencesValue/setPreferencesValue - Get or set values in the preferences file.
60 - htmlDump/htmlRead/htmlReadStr/htmlWrite - Read and write data from/in HTML files.
61 - numderivative - Approximate derivatives of a function (Jacobian or Hessian).
63 * Complete set of functions to read and write any HDF5 file from Scilab added.
66 - daskr - differential-algebraic system solver with rootfinding 'daskr', using
67 BDF methods with direct and preconditioned Krylov linear solvers, based on ODEPACK.
69 * Based on JIMS external module, Scilab provides functions to interact
72 * erf, erfc, erfcx and calerf functions now support complex arguments.
74 * isnum has been redesigned in native code. Performance improvements up to 130x.
77 * Usage of the '$' keyword in part function allowed.
79 * The histplot command can now be used with the option polygon=%t/%f to add the
80 frequency polygon chart (Thanks to Mehran Khorshidi).
82 * Multi level completion on mlist, struct, XML structures...
84 * Variable browser improvements:
85 - The variable browser also shows the size of integers and the user type of
87 See bugs #12523 and #10409.
88 - It is now possible to delete variables from the variable browser.
90 - A user can now plot variables from the variable browser (this functionality was
91 already available in the variable editor).
93 * Added lighting effect for plot of surfaces. Lighting can be enabled
94 creating light objects or disabled by deleting them. The following function
96 - light - Creates a light graphic object.
99 - Multiple domains in localization managed.
100 - addlocalizationdomain function added for a new domain creation.
101 - Optional parameter added to gettext to manage domains.
102 - tbx_generate_pofile and tbx_build_localization added to create localization files for
105 * Windows Solution updated to Visual Studio 2012.
107 * -keepconsole option added for Scilab Windows to facilitate debugging.
108 Calling Scilab with this option will leave the console box window opened at startup.
110 * License update: switch to the CeCILL 2.1.
116 * New calling sequence allowed for nicholschart: nicholschart(gains, phases, colors).
119 * qp_solve can now take up to 5 output arguments. The last one is an error flag,
120 if it is present, then the function will display a warning instead of an error.
123 * graypolarplot has been improved in terms of performances and rendering.
126 * nthroot is now vectorizable.
129 * New optional output argument for routh_t.
132 * modulo and pmodulo now support integers & hypermatrices (See bug #13002).
134 * test_run can now separate 32-bit systems from 64-bit ones.
136 * pol2str: now handles polynomials with complex coefficients and hypermatrices (See bug #13109).
138 * nanreglin: reglin with arguments containing NaNs (See bug #13208).
140 * New optional input argument added to matfile2sci (append or write the output file).
143 GUI Refactoring and Improvements
144 ================================
146 * New uicontrols styles:
147 - tab: component which enables the user to switch between sets of uicontrols by
149 The children components are "frame" uicontrols.
150 Two dedicated properties have been added to configure this component:
151 - title_position: Position of the tabs
152 - title_scroll: Indicates if tabs must all be displayed at a time or
153 managed with scroll features.
154 - layer: Component which enables the user to make parts of a GUI visible/invisible
156 - spinner: Component which enables the user to select/edit a value between bounds
159 * New uicontrols properties:
160 - border: Used to set some decoration properties on "frame" uicontrols.
161 These decorations can be created and initialized with the createBorder
162 and the createBorderFont functions.
163 - scrollable: Used to add scrolling capabilities on "frame" uicontrols.
164 - groupname: Used to group "radiobutton" and "checkbox" uicontrols for an easier
166 - icon: Add an icon to "pushbutton", "text" and "frame" uicontrols.
167 - margin: Empty space around uicontrols.
169 * New uimenu properties:
170 - icon: add an icon on the left of the menu label.
172 * "listbox" and "popupmenu" style uicontrols can now manage colors selection, icons, background
173 and foreground colors when the "String" property is set to a matrix matching the format:
174 ["#color1", "Item1", "#background1", "#foreground1"; "#color2", "Item2", ..., ...]
175 ["icon1", "Item1", "#background1", "#foreground1"; "icon2", "Item2", ..., ...]
176 with "#color1", "#background1" and "#foreground1" in HTML format #XXXXXX.
177 Then the component will display a colored box or icon on the left of the associated string,
178 and different background/foreground colors for items.
180 * New management of uicontrols positioning:
181 In previous versions, uicontrols position was managed in an absolute way through
182 their "Position" property and the "Resizefcn" property of their parent figure.
183 Using the new layout management in figures and "frame" style uicontrols, position
184 is now managed in an automatic way based on Java layouts.
185 New dedicated properties have been added in figure and uicontrols:
186 - layout: layout type.
187 - layout_options: configuration of the layout.
188 Options can be initialized with the createLayoutOptions function.
189 Type "help layouts" in Scilab for more information about available types and options.
190 Uicontrols position is then managed through the "constraints" property.
191 A new createConstraints function has been added to managed these contraints.
193 * New figures properties:
194 - icon: Allows to customize the figure icon.
195 - menubar: allows to create windows without any menu bar (default menus will not be created).
196 - menubar_visible: Manages menu bar visibility.
197 - toolbar: Allows to create windows without any toolbar.
198 - toolbar_visible: Manages toolbar visibility.
199 - infobar_visible: Manages infobar visibility.
200 - resize: Allows to lock window size.
201 - dockable: Allows to create dockable/standard figures.
202 - default_axes: Allows to manage default axes creation in figures.
204 * The figure "visible" property management has evolved and offers new possibilities:
205 - When the figure is docked, this property manages the visibility
206 of components inside the figure (uicontrols, axes, ...).
207 In previous releases, this same property setting only managed axes.
208 - When the figure is not docked, this property manages the visibility
209 of the whole figure including its decorations.
211 * New way to create GUI using XML files:
212 - Created GUI using the figure/uicontrol/uimenu functions can now be saved in
213 this new format using saveGui function.
214 - XML files in this format can be loaded in Scilab using the loadGui function.
215 This function aims at creating GUI in a more efficient way.
217 * New rendering for GUI/uicontrols:
218 In this version, uicontrols use the defaults of the OS Look & Feel.
219 Some properties default values are not set by Scilab and then can be different from an
221 To come back to the previous and deprecated behavior, you can use the related
222 property on the "Console" handle:
223 set(get(0), "UseDeprecatedSkin", "on");
224 Note that this deprecated behavior will be removed in future versions.
226 * New way to access uicontrols using a path containing their "Tag" and their parent(s) "Tag" property.
227 See the set and get functions help page for more details.
229 * New display for uicontrols handles properties. Only properties used for Java rendering are displayed.
230 To display all available properties, use the "ShowHiddenProperties" "Console" property.
236 * set function prototype has been modified to allow the user to set multiple
237 properties at once: set(h, "Property1", Value1, "Property2", Value2, ...)
239 * newaxes function now allows to create axes in "frame" uicontrols.
241 * clf function now also works with "frame" uicontrols.
243 * New axes properties:
244 - ticks_format: Format of the ticks labels.
245 - ticks_st: Scales and translates factors applied to ticks position when formatting
247 - auto_margins: Activated by default, this property lets Scilab compute margins
248 needed to display axes decorations (titles, labels, ...).
249 - grid_thickness: Thickness of the grid plotting.
250 - grid_style: Style of the grid plotting.
251 - label_font_style: Font style used to draw the labels.
253 * New legends properties:
254 - line_width: Width of the drawn line.
255 - mark_count: Number of the drawn marks.
257 * New polyline properties:
258 - mark_offset: Offset before the first mark.
259 - mark_stride: Step between consecutive marks.
260 - display_function: Name of the function used to customize the information
261 displayed in all the datatips of this polyline.
262 This function can be overloaded by setting a display
263 function on each datatip handle.
264 - display_function_data: Additional data needed for datatips display function.
265 - datatips: Handles of the datatips of the polyline.
267 * New Matplot property added :
268 - rect: specifies the rectangle where the Matplot will be drawn.
270 * Datatips properties have been renamed for better readability:
272 - tip_box_mode --> box_mode
273 - tip_label_mode --> label_mode
274 - tip_orientation --> orientation
275 - tip_3component --> z_component
276 - tip_auto_orientation --> auto_orientation
277 - tip_interp_mode --> interp_mode
278 - tip_disp_function --> display_function
281 Differential Equations
282 ======================
284 * Netlib's Quadpack, used for definite integration, has been updated to match the upstream.
290 * Autosave feature can now use %date to append the current date to the backup filename
297 * New DAE solver: DDaskr, using BDF methods with direct Newton and preconditioned Krylov
298 linear solvers, which includes rootfinding.
299 It is available from dae function.
301 * In Modelica initialization GUI, inputs (eg. sensor) were not handled.
303 * Sundials updated to the "2.5.0" version, keeping our modifications.
305 * JGraphX updated to the "2.1.0.7" version, updating our hooks performance.
307 * API changed in the scicos_block4 interface: the uid value is not available
308 inside the simulation function.
310 * API change: In scicos_block4.h, "Residute" renamed to "Jacobian".
312 * xcosAddToolsMenu added to let the user perform some actions on the graph.
314 * CBLOCK4 block added to the "User-Defined Functions"
316 * xcos_debug_gui function added for a simple use of the Debug block.
318 * tbx_build_pal_loader function added to ease external module creation (See SEP #120).
320 * Event management demonstrations added.
326 * Some Xcos specific content added to xcos_toolbox_skeleton help pages.
332 * Minimal version of Flexdock (1.2.4) enforced.
334 * Minimal version of JoGL (2.1.4) enforced.
336 * Minimal version of JLaTeXMath (1.0.3) enforced.
338 * New dependencies to manage EMF export:
339 - freehep-graphics2d.jar
340 - freehep-graphicsio-emf.jar
341 - freehep-graphicsio.jar
344 Note: --without-emf can be used to disable this feature.
347 Obsolete & Removed Functions
348 ============================
350 * Scilab 5.5.X family will be the latest family working under Windows XP/2003.
352 * Vector ^ scalar syntax declared as obsolete. See bug #11524
354 * The third argument of poly function will be more strict.
355 Only the following strings are allowed: "roots", "coeff", "c", "r".
357 * Option and direction arguments of gsort will be more strict in all cases.
358 Only the following strings are allowed:
359 - option: "r" "c" "g" "lr" "lc"
360 - direction : "d" "i"
362 * nfreq tagged as obsolete. Will be removed in Scilab 5.5.1.
363 Please use tabul instead.
365 * IsAScalar tagged as obsolete. Will be removed in Scilab 5.5.1.
366 Please use isscalar instead.
368 * chart tagged as obsolete. Will be removed in Scilab 5.5.1.
369 Please use nicholschart instead.
371 * Second output argument of add_param tagged as obsolete. Will be removed in Scilab 5.5.1.
373 * mvvacov tagged as obsolete. Will be removed in Scilab 6.0.0.
374 Please use cov instead.
376 * mfft tagged as obsolete. Will be removed in Scilab 5.5.1.
377 Please use fft instead.
379 * relocate_handle tagged as obsolete. Will be removed in Scilab 5.5.1.
381 * msd and st_deviation tagged as obsolete (See bug #7593). Will be removed in Scilab 5.5.1.
382 Please use stdev instead.
384 * pcg tagged as obsolete. Will be removed in Scilab 5.5.1.
385 Please use conjgrad instead.
387 * milk_drop tagged as obsolete. Will be removed in Scilab 5.5.1.
389 * datatipGetStruct tagged as obsolete. Will be removed in Scilab 5.5.1.
390 Please use 'datatips' property instead.
392 * regress tagged as obsolete. Will be removed in Scilab 5.5.1.
393 Please use reglin instead.
395 * %asn tagged as obsolete. Will be removed in Scilab 5.5.1.
396 Please use delip instead.
398 * jmat tagged as obsolete. Will be removed in Scilab 5.5.1.
399 Please use flipdim instead.
401 * perl tagged as obsolete. Will be removed in Scilab 6.0.0.
403 * numdiff and derivative tagged as obsolete. Will be removed in Scilab 6.0.0.
404 Please use numderivative instead.
406 * xmltochm tagged as obsolete. Will be removed in Scilab 5.5.1.
408 * dft removed, please use fft instead.
410 * sscanf removed, please use msscanf instead.
412 * fscanf removed, please use mfscanf for files opened with mopen or read for files opened
415 * fprintf removed, please use mfprintf for files opened with mopen or write for files
416 opened with file instead.
418 * clear_pixmap removed, please use drawlater/drawnow instead.
420 * pixmap property removed for figures, please use drawlater/drawnow instead.
422 * demo_message and demo_mdialog removed.
424 * with_embedded_jre removed.
428 * fit_dat removed. Please use datafit instead.
430 * winclose removed. Please use close instead.
432 * datatipInitStruct and datatipRedraw removed.
434 * getfont, getmark, getlinestyle and getsymbol removed. Please use ged instead.
437 Known incompatibilities
438 ========================
440 * Using => or =< now returns an error. See bug #2345.
442 * or/and functions now fix reals value before working on them. See bug #7666.
444 * a*b*-c+d is now interpreted as (a*b*(-c))+d instead of a*b*(-c+d). See bug #13168.
446 * Extracting children from an empty matrix of handles now returns an error.
447 For example: f=gcf(); f.children(1).children.children returns an error.
449 * Figure anti_aliasing property behavior changed:
450 - "off": No anti-aliasing activated on the figure.
451 - "2x", "4x", "8x", "16x": anti-aliasing activation will have no effect on most plateforms.
457 * paramfplot2d: When theta input argument was a column vector, an error occurred.
459 * Bug #1253 fixed - There was no possibility to draw only few marks on a polyline which
460 contained a lot of points.
462 * Bug #1751 fixed - Margins were not computed according to contents.
464 * Bug #2067 fixed - Scilab crashed when plot was called with a large numerical value.
466 * Bug #2267 fixed - Wrong error message when ticks locations and labels did not have the
469 * Bug #2345 fixed - Use of operators => and =< did not lead to an error.
471 * Bug #2416 fixed - Particular case (string([]) returns []) has been added in string help
474 * Bug #2802 fixed - convstr did not convert non ascii chars.
476 * Bug #3511 fixed - strindex did not return all occurrences in regexp mode.
478 * Bug #3928 fixed - An error was returned when a matrix was flipped along the third
481 * Bug #4042 fixed - squeeze returned a hypermatrix instead of a matrix when at least one
482 dimension was equal to 1.
484 * Bug #4083 fixed - The numdiff and derivative functions were duplicates and are
485 now tagged as obsolete and replaced by numderivative. See SEP #130.
487 * Bug #4085 fixed - num2cell help page added.
489 * Bug #4177 fixed - find function moved to the "elementary_functions" module.
491 * Bug #4229 fixed - delip did not return an error if one element of its first input
492 argument was negative.
494 * Bug #4383 fixed - csim with "step" and "impuls" now works with direct feedthrough.
496 * Bug #4401 fixed - isnum did not recognize all constants or some complex numbers.
498 * Bug #4481 fixed - iir help page updated to precise that frq can be a scalar.
500 * Bug #4490 fixed - Input argument of sinc function moved to rad.
502 * Bug #4649 fixed - License issue in xs2ppm help page fixed.
504 * Bug #4677 fixed - xclick did not return correct mouse position on keyboard event.
506 * Bug #4692 fixed - Export did not work while xgetmouse was waiting.
508 * Bug #4731 fixed - lqr failed when the time domain of an input was a number.
510 * Bug #4743 fixed - Graphics with too big or too small values did not work.
512 * Bug #4858 fixed - libintl.h was missing in binary versions but included in localization.h.
514 * Bug #4965 fixed - Setting links property for a handle of type legend did not work.
516 * Bug #5016 fixed - condestsp could return different results when repeated calls were performed.
518 * Bug #5017 fixed - norm rewritten to take benefit from the Lapack package performance.
520 * Bug #5073 fixed - New parameter added in strtod function (decimal separator).
522 * Bug #5205 fixed - permute was slow for large hypermatrices.
524 * Bug #5207 fixed - grand can now return a hypermatrix.
526 * Bug #5232 fixed - 'frame' uicontrols children now follow the frame displacement.
528 * Bug #5365 fixed - makecell help page was in the "compatibility functions" directory
529 instead of being in "data_structures".
531 * Bug #5539 fixed - sylv help page was wrong in the discrete-time case.
533 * Bug #5616 fixed - typeof(uiCreateTree(...)) returned "Tree" instead of "uitree".
535 * Bug #5694 fixed - numdiff help page clarified.
537 * Bug #5779 fixed - xnumb number format was too small (+ unit test added).
539 * Bug #5826 fixed - Graphic windows did not redirect key events in console.
541 * Bug #5844 fixed - grayplot did not have a logflag option.
543 * Bug #5886 fixed - There was no property labels_font_style on axis.
545 * Bug #6037 fixed - macrovar help page improved.
547 * Bug #6168 fixed - zpbutt, zpch1, zpch2 and zpell help pages were unclear.
549 * Bug #6191 fixed - It was not possible to set thickness and line_style properties for a grid.
551 * Bug #6305 fixed - dsearch function did not work with integers, strings and hypermatrices.
553 * Bug #6306 fixed - It is now possible to compute an histogram instead of plotting it
554 with new function histc(). Besides, histplot can now return the computed data.
556 * Bug #6363 fixed - It was not possible to create figures without menubar/toolbar.
558 * Bug #6390 fixed - The "external" argument of odedc was not well documented and
561 * Bug #6404 fixed - xrects help page was not clear about argument specification.
563 * Bug #6427 fixed - full([%T %F]) returned an error message.
565 * Bug #6466 fixed - Example with vectorized input added in mprintf and msprintf help pages.
567 * Bug #6476 fixed - Matplot help did not indicate that the data field should be used to update data.
569 * Bug #6512 fixed - %asn function tagged as obsolete.
571 * Bug #6584 fixed - mfft tagged as obsolete.
573 * Bug #6615 fixed - ui(get|put)file did not center the file dialog on the last focused window.
575 * Bug #6638 fixed - The profiler output was incorrect by a factor of 1000 under Windows.
577 * Bug #6689 & #6690 fixed - grand now works with complexes, polynomials, booleans, integers, sparses and strings,
578 and can handle row vectors, matrices and hypermatrices of thoses types.
580 * Bug #6693 fixed - modulo did not accept polynomial inputs. Help page was not updated.
582 * Bug #6752 fixed - unit test scilab.tst has been split in different tests.
584 * Bug #6824 fixed - resize_matrix did not manage hypermatrices.
586 * Bug #6832 fixed - Matrices of rationals can now be transposed via the " .' " operator.
588 * Bug #6840 fixed - New line_style added.
590 * Bug #6859 fixed - xlabel and xtitle could overlapped.
592 * Bug #6930 fixed - Matplot handle had no rect property.
594 * Bug #6988 fixed - Error messages in modules/data_structures/src/c/hmops.c were not
597 * Bug #7026 fixed - There was no unit test for plot2d.
599 * Bug #7038 fixed - A toggle button now manages datatip mode.
601 * Bug #7040 fixed - Example and description for getMatrixOfIntegerPrecision modified in help page.
603 * Bug #7047 fixed - milk_drop is now obsolete. It will be removed in Scilab 5.5.1, but will be kept as a demonstration.
605 * Bug #7051 fixed - fieldnames help page updated.
607 * Bug #7080 fixed - Some graphic macros did not use standard error messages.
609 * Bug #7084 fixed - Old, not documented and deprecated gr_menu function removed.
611 * Bug #7085 fixed - 'edit' uicontrols did not support multiple line edition.
613 * Bug #7133 fixed - help_from_sci with no input argument now launches a full demonstration.
615 * Bug #7169 fixed - It was not possible to specify different option value (thickness, style, ...) for X and Y grids.
617 * Bug #7204 fixed - geomean applied to a hypermatrix gave wrong results.
619 * Bug #7205 fixed - length(H) applied to a non-string hypermat returned 3 instead of size(H,"*").
621 * Bug #7206 fixed - If the second input argument of meanf function was a hypermatrix,
622 this function returned an error.
624 * Bug #7244 fixed - Extraction from a struct array with a boolean vector had a strange behavior.
626 * Bug #7296 fixed - %nan, %inf and -%inf enabled for the cdf* functions.
628 * Bug #7304 fixed - exportUI did not switch filename extension when filter was changed.
630 * Bug #7411 fixed - clf forgot to turn off the datatip mode.
632 * Bug #7417 fixed - Auto-positioning of datatips did not take the curvature into account.
634 * Bug #7486 fixed - LAPACK versions of DGELSY and ZGELSY now used.
636 * Bug #7561 fixed - roots help page now explains that coefficients are used in the contrary order of poly.
638 * Bug #7570 fixed - The switch criterion on x and y is now explained in beta() help page.
640 * Bug #7585 fixed - psi.f moved from "elementary functions" to "special functions" module.
642 * Bug #7593 fixed - stdev now encompasses msd and st_deviation thanks to a new optional input argument.
644 * Bug #7596 fixed - A same error happening in different places now displays the same
647 * Bug #7648 fixed - CDF functions now display a warning for non integer
648 "degrees of freedom" argument.
650 * Bug #7650 fixed - isempty(tlist(...)) always returned false, even when all defined fields were empty.
652 * Bug #7655 fixed - An example added in type help page, for type(X)=11 and type(X)=13.
654 * Bug #7666 fixed - Inconsistencies between and/or and &/| fixed.
656 * Bug #7684 fixed - Introduction demonstration splitted into subsections.
658 * Bug #7705 fixed - "dimension", "minbounds" and "maxbounds" fields have been documented in Genetic algorithms help pages.
660 * Bug #7739 fixed - Axis position was invalid in log modes.
662 * Bug #7771 fixed - There was no item about arrow_size in champ_properties help page.
664 * Bug #7772 fixed - There was no description, no example about line_style property in polyline help page.
666 * Bug #7781 fixed - The second parameter of iqr function had no effect.
668 * Bug #7782 fixed - lcm and gcd help pages improved to tell the user how to use both
671 * Bug #7824 fixed - title function properties did not support an indexed color.
673 * Bug #7826 fixed - chart tagged as obsolete.
675 * Bug #7828 fixed - Slight improvements in nicholschart.
677 * Bug #7848 fixed - The third argument of correl function is now optional.
679 * Bug #7858 fixed - variance and variancef can now return the mean of the input
680 in a new output argument and take the a priori mean as input.
682 * Bug #7877 fixed - iirgroup function fixed.
684 * Bug #7879 fixed - string now accepts plist type, and printing a plist displays that string.
686 * Bug #7905 fixed - Figure icon can now be changed using dedicated property.
688 * Bug #7916 fixed - nansum([]) returned NaN value while this function had to ignore it.
690 * Bug #7927 fixed - Output "flag" in qmr function was not well documented.
692 * Bug #7960 fixed - plzr could not produce pole zero plot for a simple transfer function.
694 * Bug #7986 fixed - spec gateway renamed from sci_eig.c to sci_spec.c.
696 * Bug #7999 fixed - SwingScilabFileChooser.getFilterIndex() was unusable.
698 * Bug #8031 fixed - cdfgam error message fixed.
700 * Bug #8058 fixed - The user can now set the tolerances of intc function.
702 * Bug #8060 fixed - Improved list display in the variable browser.
704 * Bug #8098 fixed - cumsum could not be applied to rational matrices.
706 * Bug #8131 fixed - It was not possible to choose the number of marks and the line width in legends.
708 * Bug #8133 fixed - Ticks disappeared in planar 3-D view.
710 * Bug #8162 fixed - Area of stability of plzr was wrong for continuous systems
713 * Bug #8196 fixed - Error messages dealing with negative thickness were not standard.
715 * Bug #8211 fixed - Parameters module demonstration finalized.
717 * Bug #8231 fixed - xrect help page did not say that clipping property was inherited.
719 * Bug #8234 fixed - strtod did not return an empty matrix when the input argument was an
722 * Bug #8247 fixed - regress tagged as obsolete.
724 * Bug #8264 fixed - Matlab to Scilab dictionary help page updated for atan2.
726 * Bug #8290 fixed - DELAYV_f block documentation fixed.
728 * Bug #8319 fixed - dbphi(hypermat) and phasemag(hypermat) returned a matrix instead of
731 * Bug #8323 fixed - Scilab "About Box" did not hide Scilab main window.
733 * Bug #8337 fixed - mtlb_rand now uses the "uniform" rule, whatever the random rule set is.
735 * Bug #8373 fixed - clear can now handle a matrix of strings argument.
737 * Bug #8379 fixed - It was not possible to delete the selected datatip with DELETE or BACKSPACE.
739 * Bug #8415 fixed - optim_moga, optim_nsga, optim_nsga2 can now take list as input
740 arguments, as explained in their help pages.
743 * Bug #8462 fixed - bvodeS could make Scilab unstable.
745 * Bug #8470 fixed - bvode displayed some output in terminal window and not in
748 * Bug #8479 fixed - The latest Saxon version was not supported.
750 * Bug #8511 fixed - sprand now uses grand instead of rand and grand functions. Internal
751 state of the random generator is no more changed.
753 * Bug #8561 fixed - ddassl, ddasrt, ddaskr: abs and rel tolerance sizes are now checked.
755 * Bug #8597 fixed - grand/clcg4 could display uncontrolled messages as warning.
757 * Bug #8607 fixed - Some error messages in modules/overloading/macros were not standard
760 * Bug #8614 fixed - Unit test for barhomogenize added.
762 * Bug #8636 fixed - roots help page updated (default algorithm value was wrong).
764 * Bug #8667 fixed - The handling of %nan in min, max, median functions was not properly
767 * Bug #8680 fixed - "end" output argument of regexp function has been changed.
769 * Bug #8687 fixed - typeof function failed on uint8, depending on the format
772 * Bug #8695 fixed - optim_ga used old (initial) values instead of newly-computed ones.
774 * Bug #8745 fixed - Extracting from an empty matrix automatically returned an empty matrix.
776 * Bug #8778 fixed - Call_ScilabOpen, TerminateScilab could not be called more
777 than 80 times in a loop.
779 * Bug #8779 fixed - gsort did not preserve the order of equal elements, in
782 * Bug #8820 fixed - squeeze did not return a matrix when the number of dimensions
783 of the result was less or equal to 2.
785 * Bug #8824 fixed - taucs_chfact returned a segfault (not the case in nwni mode).
787 * Bug #8840 fixed - fileparts did not manage matrix of strings.
789 * Bug #8856 fixed - Non regression test added for [k,l,m,...]=find(a==5).
790 Non regression test of bug #476 updated.
792 * Bug #8857 fixed - Non regression test of bug #477 updated.
794 * Bug #8858 fixed - Non regression test of bug #480 updated.
796 * Bug #8862 fixed - mget and mput could not read and write 64 bit data from
799 * Bug #8956 fixed - xpoly, xfpoly, xrect, xsegs and xarc did not update data_bounds property.
801 * Bug #9004 fixed - bitcmp function called with one input argument returned an error.
803 * Bug #9020 fixed - exists function did not accept matrix as first input argument.
805 * Bug #9031 fixed - Misalignment of text when using xstring with a matrix fixed.
807 * Bug #9033 fixed - auto_dimensioning property for text handles was not documented.
809 * Bug #9059 fixed - tbx_build_macros and genlib did not stop even if an error occurred.
811 * Bug #9109 fixed - nfreq tagged as obsolete.
813 * Bug #9110 fixed - Examples and references to other functions added in Statistics help pages.
815 * Bug #9158 fixed - zeros called with a big number returned an empty matrix instead
818 * Bug #9208 fixed - Added three optional output arguments to optim,
819 to retrieve #iterations, #evaluations and a termination indicator.
821 * Bug #9309 fixed - comparison help page updated to document issue with empty matrix.
823 * Bug #9319 fixed - Huge polylines could not be exported in PS/EPS.
825 * Bug #9385 fixed - The type checking in trigonometric functions has been added.
827 * Bug #9394 fixed - is_param recognized "plist" as an existing field.
829 * Bug #9395 fixed - add_param did not check its input arguments.
831 * Bug #9396 fixed - add_param accepted duplicate keys.
833 * Bug #9444 fixed - with_embedded_jre function removed.
835 * Bug #9459 fixed - Default values of the optional plot3d arguments were not documented.
837 * Bug #9493 fixed - Title is now correctly set when starting Scilab and focus is set on Console.
839 * Bug #9537 fixed - optimbase_configure only allowed row vectors as initial value.
840 Column vectors now allowed by transposing them.
842 * Bug #9538 fixed - optimbase_checkshape only allowed row vectors as output arguments of
843 cost function. Column vectors are now allowed by transposing them.
845 * Bug #9577 fixed - Setting neldermead_configure("-numberofvariables") is now optional,
846 setting neldermead_configure("-x0") initializes -numberofvariables
849 * Bug #9601 fixed - Cylinder demonstration fixed.
851 * Bug #9627 fixed - Arguments checking added in optimsimplex_* functions.
853 * Bug #9688 fixed - optim could crash when "imp" option was < 0. It is now set to 0 in
856 * Bug #9690 fixed - The "imp" option for optim could crash Scilab and was not consistent
859 * Bug #9691 fixed - "imp" option in optim help page was poorly documented.
861 * Bug #9694 fixed - Example in optim help page fixed to display correct counters.
864 * Bug #9697 fixed - Displayed information for optim "qn" and "gc" with bounds and imp=1 fixed.
866 * Bug #9701 fixed - optim with "qn" option was failing for large problems.
868 * Bug #9702 fixed - Contrary to what optim help page stated, the "gc" algorithm does use
869 the "epsx" parameter.
871 * Bug #9780 fixed - gmres solver did not run with complex systems.
873 * Bug #9788 fixed - neldermead can now produce a warning when it fails to converge,
874 thanks to a new input argument "warn".
876 * Bug #9819 fixed - unwrap function did not exist in Scilab.
878 * Bug #9821 fixed - getrelativefilename did not manage matrix of strings.
880 * Bug #9840 fixed - Default G tolerance in lsqrsolve was too large.
882 * Bug #9851 fixed - Error message occurred because of a cut-off frequency of 0.25Hz
885 * Bug #9859 fixed - It was not possible to draw arrows in 3-D using xarrows.
887 * Bug #10012 fixed - lmisolver and lmitool called with no input now produce errors.
890 * Bug #10083 fixed - plot3d could not be used with only one input argument.
892 * Bug #10122 fixed - replot could not be used in 3-D.
894 * Bug #10146 fixed - In SciNotes, 'help on keyword' moved from bottom to top in the popup
897 * Bug #10175 fixed - Clearer example added for sp2adj to adj2sp conversion (and backwards conversion).
899 * Bug #10180 fixed - det was not defined for sparse matrices.
901 * Bug #10213 fixed - sci2exp help page updated to document the impact of format function.
903 * Bug #10214 fixed - evstr help page updated to mention that input argument must not be composed of
904 continuation marks (..).
906 * Bug #10216 fixed - Invalid syntaxes for zeros, ones, eye, rand, like zeros(2,:).
908 * Bug #10221 fixed - ifftshift function did not exist in Scilab.
910 * Bug #10226 fixed - When a // <empty session> line was deleted, all sessions
911 histories were folded.
913 * Bug #10234 fixed - reglin function moved from CACSD to Statistics module.
915 * Bug #10243 fixed - fun2string(X) called X before returning its code.
917 * Bug #10254 fixed - Slight improvements in ones help page.
919 * Bug #10269 fixed - qp_solve can now take up to 5 output arguments. The last one is an
920 error flag, if it is present, then the function will issue a warning
923 * Bug #10271 fixed - ordmmd now checks the consistency of the third input argument with the
924 input matrix defined by the first two input arguments.
926 * Bug #10273 fixed - spchol help page now displays an example showing how to use its output arguments.
928 * Bug #10276 fixed - qp_solve segfaulted with large matrices.
930 * Bug #10287 fixed - Error message added for complex expression as input argument of
933 * Bug #10305 fixed - Comparison of lists with empty items returned an error message.
935 * Bug #10391 fixed - Error when using completion after a global variable clear fixed.
937 * Bug #10428 fixed - Java based components of Scilab showed a library load error in CLI mode.
939 * Bug #10445 fixed - In SciNotes, CTRL+Drag&Drop moved text rather than copying it.
941 * Bug #10470 fixed - In SciNotes, split "Horizontally" or "Vertically" was meaningless.
943 * Bug #10596 fixed - exit(xxx) from Scilab failed.
945 * Bug #10621 fixed - Figure without docking/undocking capabilities can now be created.
947 * Bug #10645 fixed - File encoding could not be given as argument in xmlRead.
949 * Bug #10718 fixed - New "Resize" property added to figures.
951 * Bug #10805 fixed - Documentation on left bracket was superfluous and is now removed.
952 Refer to brackets for information on "[" and "]".
954 * Bug #10816 fixed - Typo in part error message fixed.
956 * Bug #10818 fixed - home, %e, %t, %f, %z and %s help pages added.
958 * Bug #10823 fixed - fullpath returned different results under Windows and Linux for
961 * Bug #10830 fixed - Hypermatrix insertion with a negative index returned a wrong error message.
963 * Bug #10833 fixed - exists help page updated.
965 * Bug #10840 fixed - Keyboard arrows were disabled on 'slider' type uicontrols.
967 * Bug #10856 fixed - analpf did not return the right result.
969 * Bug #10862 fixed - Add a without Internet connection installation
970 global configuration in the installer.
972 * Bug #10866 fixed - det was not equivalent to detr for rational matrices.
974 * Bug #10906 fixed - Typo fixed in cls2dls help page.
976 * Bug #10930 fixed - The comments in armax function were in French.
978 * Bug #10932 fixed - Startup directory was not saved/restored in preferences.
980 * Bug #10936 fixed - Scilab hung with invalid strf in plot2d.
982 * Bug #10942 fixed - Function soundsec revised. Now soundsec can be used for non integer values of time.
984 * Bug #10995 fixed - Typo fixed in grand help page for Gamma law argument.
986 * Bug #10998 fixed - matrix*hypermatrix and hypermatrix*matrix operations failed.
988 * Bug #11001 fixed - exists and isdef did not work with primitives.
990 * Bug #11007, #11008 & #11009 fixed - New conjgrad function (Conjugate Gradient methods "pcg", "cgs", "bicg" and "bicgstab").
992 * Bug #11065 fixed - The second output argument of unique function contained a wrong result.
994 * Bug #11067 fixed - Display of ticks labels with closed associated values was wrong.
996 * Bug #11139 fixed - conj was not defined for sparse matrices (+ unit test added).
998 * Bug #11303 fixed - Exception while searching with multiple tabs in SciNotes fixed.
999 already existing in SCI/contrib/archives in "offline" mode.
1001 * Bug #11305 fixed - Performances improved with a better way to update data in Graphics.
1003 * Bug #11308 fixed - Calling sequences in dsearch help page were wrong.
1005 * Bug #11343 fixed - The "isoview" figure property did not work when the axes
1006 margins had been modified.
1008 * Bug #11523 fixed - In SciNotes, 'whereami line numbering' was not clear enough.
1010 * Bug #11571 fixed - x_mdialog did not let the Look&Feel select the window size.
1012 * Bug #11575 fixed - There was no preview of GIF files in exportUI dialog.
1014 * Bug #11576 fixed - exportUI did not propose gcf().figure_name as default file name.
1016 * Bug #11616 fixed - Figure menubar could not be made invisible.
1018 * Bug #11629 fixed - Interactive zoom did not work properly in datatip mode.
1020 * Bug #11648 fixed - Copying graphic via the clipboard did not work.
1022 * Bug #11680 fixed - GUI functions in Scilab 5.4.X were much slower than in Scilab 5.3.3.
1024 * Bug #11714 fixed - help_from_sci sometimes failed when input function had "<imagedata>" comments.
1026 * Bug #11766 fixed - nthroot has been added to m2sci help page.
1028 * Bug #11779 fixed - Wrong variable type in the documentation of getNbInputArgument and getNbOutputArgument fixed.
1030 * Bug #11789 fixed - Documentation was missing for nbInputArgument.
1032 * Bug #11792 fixed - Lists can be accessed with non integer indexes (list help page
1035 * Bug #11814 fixed - Typo in CACSD help chapter fixed.
1037 * Bug #11869 fixed - "Environment" was not localized in preferences.
1039 * Bug #11876 fixed - ilib_include_flag now returns a string when called with a string column vector as input.
1041 * Bug #11885 fixed - Each rand has been changed to grand in genetic algorithms and
1042 simulated annealing functions.
1044 * Bug #11891 fixed - Fisher ratio could be inaccurate for one-way ANOVA.
1046 * Bug #11953 fixed - Scilab crashed when global("") was typed.
1048 * Bug #11964 fixed - uicontrol coordinates system did not take figure resize into account.
1050 * Bug #11996 fixed - eye extended to hypermatrix.
1052 * Bug #11997 fixed - In case of invalid variable name, save function now returns an error
1053 instead of a compatibility warning.
1055 * Bug #12012 fixed - Misleading perl function should not be part of Scilab (tagged as obsolete).
1057 * Bug #12034 fixed - max function did not manage empty matrices.
1059 * Bug #12037 fixed - Simplified Chinese version of SciNotes displayed warnings at startup.
1061 * Bug #12045 fixed - repmat returned wrong results if the values of an input matrix were
1064 * Bug #12070 fixed - Removing a module can now be done in an on-line mode even if
1065 it has been installed in an off-line mode.
1067 * Bug #12073 fixed - Width of code examples has been decreased in XML help pages.
1069 * Bug #12080 fixed - lsqrsolve always printed messages.
1071 * Bug #12082 fixed - convstr function did not work with non-ASCII symbols.
1073 * Bug #12085 fixed - Under Windows, csvWrite wrote wrong EOL.
1075 * Bug #12114 fixed - libstdc++ is now compiled as static instead of using the
1076 library from thirdparty.
1078 * Bug #12118 fixed - ode could take complex externals.
1080 * Bug #12121 fixed - inv function did not work for complex sparse matrices.
1082 * Bug #12130 fixed - flipdim can now flip blocks, thus making jmat obsolete.
1084 * Bug #12143 fixed - "stop entity picker" (ged(11)) returned an error message.
1086 * Bug #12145 fixed - demo_mdialog internal function removed.
1088 * Bug #12150 fixed - datatipCreate failed with one single point.
1090 * Bug #12156 fixed - Closing a Scilab session in Javasci could led to a HDF5 error message.
1092 * Bug #12163 fixed - unzoom did not work with a single input argument.
1094 * Bug #12170 fixed - Calling matfile_listvar on an empty file returned an error.
1096 * Bug #12212 fixed - Export of a polyline in 2-D broke it into several segments.
1098 * Bug #12306 fixed - Invalid memory free on completion in NWNI mode fixed.
1100 * Bug #12308 fixed - create_palette help page removed (function removed).
1102 * Bug #12326 fixed - There was no way to set LaTeX font size in preview.
1104 * Bug #12334 fixed - Mark color in legend was invalid.
1106 * Bug #12349 fixed - In SciNotes, when the view was splitted, removing a char made the
1109 * Bug #12376 fixed - Exec & edit buttons in the help pages examples were sometimes
1112 * Bug #12412 fixed - Typo fixed in some error messages.
1114 * Bug #12413 fixed - ATOMS packages could not be removed if ATOMS had never been on-line.
1116 * Bug #12415 fixed - PATH environment variable grew when using call_scilab in a loop.
1118 * Bug #12426 fixed - By using addErrorMessage, a random string error could be displayed.
1120 * Bug #12433 fixed - show_pixmap function was removed from Scilab but still used in some
1123 * Bug #12439 fixed - edit_error returned a wrong message when there was no recorded error.
1125 * Bug #12440 fixed - Unitary test added for bitxor.
1127 * Bug #12443 fixed - The behavior of mopen in text file mode has been documented
1130 * Bug #12463 fixed - Wrong specification for rect=[x,y,w,h] argument in xstringb
1133 * Bug #12465 fixed - ATOMS Default categories names were not localized.
1135 * Bug #12470 fixed - Variable browser was not refreshed after loading an environment.
1137 * Bug #12472 fixed - grand and link error messages fixed.
1139 * Bug #12473 fixed - Problems with "é" in mkdir French help page.
1141 * Bug #12475 fixed - csvRead did not support double quoted fields.
1143 * Bug #12481 fixed - xlabel could not be used with Scilab property names.
1145 * Bug #12485 fixed - xchange returned bad values with log scale.
1147 * Bug #12490 fixed - plot did not call clf; in its help page example producing a
1150 * Bug #12492 fixed - Exported EPS files were invalid when dash patterns were too long.
1152 * Bug #12496 fixed - zoom_rect could led to a crash in log scale.
1154 * Bug #12506 fixed - In SciNotes, a miscolorization could occurred when returned values
1157 * Bug #12508 fixed - Wrong error message in rand function fixed.
1159 * Bug #12518 fixed - Polynoms were not displayed by default in the variable browser.
1160 and a new function bode_asymp() to draw the system asymptotes.
1162 * Bug #12520 fixed - Improve the description of the size in the variable browser.
1164 * Bug #12527 fixed - Scilab user functions were not listed in the variable browser.
1166 * Bug #12535 fixed - In a French localized Scilab, comma was used as decimal separator when zooming (rather than point).
1168 * Bug #12547 fixed - In SciNotes, lines were wrongly numbered with splitted function
1171 * Bug #12548 fixed - Duplicated code in xmltoformat removed.
1173 * Bug #12550 fixed - optimbase and optimsimplex help pages were not standard.
1175 * Bug #12551 fixed - Stack problem with diary([],"pause") and diary([],"resume") fixed.
1177 * Bug #12556 fixed - A fatal error occurred when calling set with wrong instructions.
1179 * Bug #12557 fixed - Valid function names were not specified in function and functions
1182 * Bug #12564 fixed - Compile and run javasci help page was not clear about needed packages.
1184 * Bug #12567 fixed - Error messages fixed in ricc.
1186 * Bug #12581 fixed - isfield could not support mlist or tlist.
1188 * Bug #12589 fixed - Call sequence for spzeros & spones were missing in French
1191 * Bug #12592 fixed - Scilab hung with plot(-0).
1193 * Bug #12593 fixed - A wrong error message was returned when running genlib with an
1194 error in the sci file.
1196 * Bug #12594 fixed - Invalid SciNotes configuration file avoided SciNotes startup.
1198 * Bug #12600 fixed - mput did not manage unsigned integer.
1200 * Bug #12606 fixed - Overloads for grand were not standard.
1202 * Bug #12613 fixed - gsort did not return correct results with %nan.
1204 * Bug #12614 fixed - Helpbrowser was not launched in EDT.
1206 * Bug #12615 fixed - Graphics seemed to be freezed after a call to plot/bar/barh with
1207 a bad LineSpec argument.
1209 * Bug #12622 fixed - Various typos fixed in error messages.
1211 * Bug #12624 fixed - In case of errors in Scilab macros, "make check-TESTS" did not fail
1214 * Bug #12627 fixed - At restoration, a window could be out of the screen.
1216 * Bug #12629 fixed - The last example of csim help page defined a function called
1217 input (overwriting the Scilab one).
1219 * Bug #12631 fixed - A "see also" link has been added from progressionbar to waitbar
1222 * Bug #12634 fixed - ATOMS modules could not be installed from an archive file
1223 already existing in SCI/contrib/archives in "offline" mode.
1225 * Bug #12637 fixed - In some help pages, some signal processing functions were not in
1226 the correct section.
1228 * Bug #12639 fixed - justify([], position) returned an error instead of [].
1230 * Bug #12641 fixed - graypolarplot has been fully vectorized as it was too slow.
1232 * Bug #12657 fixed - Computation of v1.^v2 is now done without any memory allocation,
1233 when v1 and v2 are real arrays, v1 >= 0 and v2 integer.
1235 * Bug #12668 fixed - Undocking SciNotes led to an exception.
1237 * Bug #12672 fixed - Ticks part of axes_property help page updated.
1239 * Bug #12673 fixed - Ticks were drawn outside of axes area.
1241 * Bug #12678 fixed - nthroot now accepts vector/matrix as second argument.
1243 * Bug #12679 fixed - Argument type check added in gcd and lcm.
1245 * Bug #12682 fixed - Key events were disabled after zooming.
1247 * Bug #12683 fixed - proc_name(k, gwin) callback was badly managed depending on
1248 input arguments of addmenu function.
1250 * Bug #12686 fixed - Error returned by diff fixed.
1252 * Bug #12702 fixed - When no extra parameters were needed in the cost function,
1253 NDcost did not work.
1255 * Bug #12703 fixed - In SciNotes, common shortcuts 'SHIFT DELETE', 'SHIFT INSERT'
1258 * Bug #12705 fixed - members function added. It allows to find the number of occurrences
1259 and linear indexes for common values between two matrices of the
1261 * Bug #12706 fixed - A wrong size of a matrix as input argument of cross function was
1264 * Bug #12708 fixed - Incorrect display in SciNotes preferences fixed (onmouseover styles).
1266 * Bug #12712 fixed - In SciNotes, autosaving can now use %date to append the current
1267 date to the backup filename.
1269 * Bug #12714 fixed - csvDefault("decimal", ",") returned %f while this value was valid.
1271 * Bug #12715 fixed - Variable cross in pspect and cspect has been renamed because of
1272 conflicts with cross function.
1274 * Bug #12716 fixed - In SciNotes, RTL languages were not correctly displayed.
1276 * Bug #12725 fixed - Datatips did not work in logarithmic scale.
1278 * Bug #12733 fixed - There was no way to direct graphs to nothing with driver function.
1280 * Bug #12736 fixed - In SciNotes, the Completion window appeared only in first tab.
1282 * Bug #12737 fixed - In SciNotes, autosave did not create directory if it did not exist.
1284 * Bug #12747 fixed - legendre now accepts the -1 and 1 values for third argument.
1286 * Bug #12749 fixed - fscanfMat help page updated.
1288 * Bug #12758 fixed - Focus issue with plot3d fixed.
1290 * Bug #12761 fixed - The https:// protocol was not supported on ATOMS.
1292 * Bug #12763 fixed - Value of "listbox" style uicontrols was not updated when using arrow keys.
1294 * Bug #12769 fixed - xset("window", 1) did not set the current axes.
1296 * Bug #12772 fixed - eigs failed when trying to solve a sparse matrix eigen value problem.
1298 * Bug #12774 fixed - Various typos fixed.
1300 * Bug #12775 fixed - Some related functions were not listed in "See also" section of
1303 * Bug #12778 fixed - Insertion of an empty matrix in an integer matrix led to a
1306 * Bug #12779 fixed - savewave had a miscoding in the internal function write_wavedat.
1308 * Bug #12783 fixed - There were some inconsistent error messages in dsearch.
1310 * Bug #12784 fixed - Misleading error message in many functions when passing an integer
1311 argument instead of double argument fixed.
1313 * Bug #12785 fixed - plot did not allow int data as first argument.
1315 * Bug #12790 fixed - Links to ZCOS files in documentation were broken.
1317 * Bug #12791 fixed - More information is now given in case of failure during the ATOMS
1320 * Bug #12793 fixed - Improved the bode() plots with a new option "rad" to convert plot into rad/s
1321 and a new function bode_asymp() to draw the system asymptotes.
1323 * Bug #12794 fixed - calfrq.sci code did not follow Scilab standard.
1325 * Bug #12795 fixed - Typos fixed in CACSD help page.
1327 * Bug #12800 fixed - Typo fixed in Polynomials help page.
1329 * Bug #12803 fixed - warning(['foo','bar']) printed two 'WARNING: '.
1331 * Bug #12804 fixed - Typos fixed in routh_t help page.
1333 * Bug #12807 fixed - Display of showprofile improved.
1335 * Bug #12808 fixed - Add missing </td> in documentation generation (note, warning, ...).
1337 * Bug #12813 fixed - flipdim function extended to any type of input data.
1339 * Bug #12814 fixed - Improvements of pertrans help page.
1341 * Bug #12815 fixed - levin redefined cov as a variable.
1344 * Bug #12816 fixed - Numbers pasted in editvar were not parsed according to locale.
1346 * Bug #12818 fixed - Segfault in set function with invalid property values dimension.
1348 * Bug #12819 fixed - Link to contributors website page fixed in the documentation.
1350 * Bug #12823 fixed - In help generation (toolbox) links were not correctly handled.
1352 * Bug #12826 fixed - <warning> and <note> tags were not managed in the documentation.
1354 * Bug #12827 fixed - noisegen help page improved.
1356 * Bug #12828 fixed - routh_t gave a wrong result if the first element of a row was zero.
1358 * Bug #12829 fixed - New optional output argument added for routh_t function.
1360 * Bug #12830 fixed - In SciNotes, it was not possible to execute a replace action
1361 from the caret position.
1363 * Bug #12831 fixed - In SciNotes toolbar, there was no button to open code navigator.
1365 * Bug #12833 fixed - In SciNotes, there was no autoscroll when searching a pattern.
1367 * Bug #12836 fixed - Error fixed in strcmpi help page.
1369 * Bug #12839 fixed - Typo fixed in getVariablesOnStack help page.
1371 * Bug #12840 fixed - Typo fixed in number_properties.xml help page.
1373 * Bug #12852 fixed - Visual Studio 2012 SDK configuration was incorrect.
1375 * Bug #12854 fixed - configure failed to detect custom installation of docbook.
1377 * Bug #12858 fixed - Typo fixed in debug and pause French help pages.
1379 * Bug #12859 fixed - Fixed optional argument in isdef help page.
1381 * Bug #12860 fixed - Missing semicolon in style.css added.
1383 * Bug #12863 fixed - size(state-space, "r") returned an error.
1385 * Bug #12875 fixed - phasemag returned an error for input vector containing zeros.
1387 * Bug #12880 fixed - A warning is displayed when transposing arguments of plot.
1389 * Bug #12882 fixed - Some help pages were not clear.
1391 * Bug #12887 fixed - Scilab hung with auto_clear set to on and log_flags set to true.
1393 * Bug #12888 fixed - sysdiag was not documented about block diagonal matrices build.
1395 * Bug #12896 fixed - Typos fixed in XML module error messages.
1397 * Bug #12900 fixed - It is now possible to set proxy options in Preferences.
1399 * Bug #12906 fixed - champ and champ1 help pages updated
1401 * Bug #12909 fixed - Completion on (mt)list led to a crash.
1403 * Bug #12910 fixed - Typos fixed in several help pages.
1405 * Bug #12911 fixed - Matlab to Scilab dictionary help page updated for eig.
1407 * Bug #12913 fixed - linspace returned an error if the third argument was an integer type
1410 * Bug #12916 fixed - power help page improved.
1412 * Bug #12919 fixed - Rotation on plots was disabled after using menus.
1414 * Bug #12927 fixed - ones function could not take integer type input.
1416 * Bug #12931 fixed - ATOMS redefined "message" keyword.
1418 * Bug #12938 fixed - No Java compiler was available in Linux binary version.
1420 * Bug #12943 fixed - Datatips did not work properly when 2-D plots were rotated.
1422 * Bug #12945 fixed - Datatips could not be dragged properly in zoomed axes.
1424 * Bug #12948 fixed - When host was not found, getURL caused a crash to desktop.
1426 * Bug #12950 fixed - getURL ignored the proxy settings under Windows.
1428 * Bug #12951 fixed - Interactive zoom was broken.
1430 * Bug #12952 fixed - It was not always possible to search a word in a file with SciNotes.
1432 * Bug #12956 fixed - splitURL with no protocol in URL provoked an access
1433 violation exception.
1435 * Bug #12957 fixed - splitURL and getURL were not declared as new 5.5 functions.
1437 * Bug #12962 fixed - xinfo documentation was not clear.
1439 * Bug #12963 fixed - drawaxis did not place the axis properly.
1441 * Bug #12966 fixed - Rotation, tool tip and other Xcos plot actions were
1442 disabled by default.
1444 * Bug #12967 fixed - Data editor icon was not 16x16.
1446 * Bug #12968 fixed - A variable named 'temp' could not be saved.
1448 * Bug #12971 fixed - getURL downloaded file name was wrong.
1450 * Bug #12973 fixed - Exception occurring when clicking on a figure at creation fixed.
1452 * Bug #12976 fixed - getURL returned a file name instead of a file path.
1454 * Bug #12978 fixed - exportUI returned an error when input argument was a figure handle.
1456 * Bug #12979 fixed - exportUI did not work with vectorial export.
1458 * Bug #12990 fixed - GED features conflicted with figure events.
1460 * Bug #12992 fixed - The sigma value was always equal to "LM" in eigs.
1462 * Bug #12993 fixed - stdev returned value depended on 'x' being defined in the environment.
1464 * Bug #13000 fixed - []./int8(3) and on int8(3)./[] led to an endless recursive.
1466 * Bug #13002 fixed - modulo and pmodulo did not support integers & hypermatrices.
1468 * Bug #13003 fixed - String to enum converter added to Java external objects.
1470 * Bug #13004 fixed - Debug infos were displayed in case of an error with eoj.
1472 * Bug #13005 fixed - jcompile did not use the classpath to compile.
1474 * Bug #13007 fixed - Compilation errors were not returned by jcompile.
1476 * Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
1478 * Bug #13010 fixed - Wrong class was returned by jcompile (with ecj).
1480 * Bug #13011 fixed - ilib_compile failed under Mac OS X 10.9.
1482 * Bug #13012 fixed - Vectorial export of rotated strings was wrong.
1484 * Bug #13013 fixed - In SciNotes, the first proposed directory to save a file was not current working directory.
1486 * Bug #13014 fixed - Update of the efficiency inner variable improved in optim_ga.
1488 * Bug #13015 fixed - Computation of efficiency inner variable improved in optim_ga.
1490 * Bug #13022 fixed - Vectorial export did not clip large segments.
1492 * Bug #13023 fixed - xs2pdf crashed under Windows when the target file was already opened.
1495 * Bug #13027 fixed - There was no autowrap into array in JIMS.
1497 * Bug #13031 fixed - Lorentz Butterfly demonstration fixed.
1499 * Bug #13032 fixed - CMATVIEW help page example fixed and CMAT3D help page example created.
1501 * Bug #13033 fixed - -1 could not be used as nax argument in plot2d.
1503 * Bug #13036 fixed - The help page associated to the history browser was wrong.
1505 * Bug #13041 fixed - Wrong result was returned for "integer scalar" minus "integer vector".
1507 * Bug #13042 fixed - Texts in graphics were not properly centered.
1509 * Bug #13047 fixed - jcompile did not allow class reloading.
1511 * Bug #13049 fixed - New handled protocols added in links in SciNotes.
1513 * Bug #13050 fixed - The result of mvvacov was not symmetric.
1515 * Bug #13051 fixed - SciNotes restoration could block desktop one.
1517 * Bug #13053 fixed - datatipCreate did not return datatip handle.
1519 * Bug #13055 fixed - Array indexing did not follow Scilab convention in JIMS.
1521 * Bug #13061 fixed - hdf5 demonstration failed with a read-only file.
1523 * Bug #13063 fixed - Color selection in SciNotes preferences threw exceptions.
1525 * Bug #13064 fixed - Deleting a link connected to a split led to a translated link.
1527 * Bug #13066 fixed - data_bounds was not fully documented in axes_properties.
1529 * Bug #13069 fixed - Documentation for %MODELICA_USER_LIBS updated.
1531 * Bug #13080 fixed - Contextual menu was unavailable for datatips management.
1533 * Bug #13082 fixed - Datatip mark style was not inherited from the parent polyline.
1535 * Bug #13083 fixed - Datatip marks did not inherit colors from the parent polyline.
1537 * Bug #13084 fixed - interp_mode property could not be set on all datatips of the same polyline.
1539 * Bug #13085 fixed - A datatip could not be moved on a circle.
1541 * Bug #13092 fixed - Optimizations now check the user function output (must be real).
1543 * Bug #13093 fixed - Removed trailing "\n" in the head_comments error message.
1545 * Bug #13101 fixed - When x-axis was in reverse position x_location='origin' failed.
1547 * Bug #13102 fixed - savematfile did not support "-v7.3" option.
1549 * Bug #13108 fixed - Time between ATOMS database updates is now a month (was a day) and is configurable.
1551 * Bug #13109 fixed - pol2str now supports polynomials with complex coefficients and hypermatrices.
1553 * Bug #13111 fixed - sqrt returned different results when imaginary part was -0 versus 0.
1555 * Bug #13114 fixed - clear_pixmap/pixmap property should have been removed in Scilab 5.4.1.
1557 * Bug #13116 fixed - qpsolve now respects upper-bounds constraints.
1559 * Bug #13119 fixed - mget and mgetl now return an error when called with decimal values as number of lines.
1561 * Bug #13121 fixed - ode "rk" option crashed Scilab when the user derivative function failed.
1563 * Bug #13127 fixed - There were no subticks with user defined ticks.
1565 * Bug #13132 fixed - There were missing graduations when data_bounds interval was too small.
1567 * Bug #13134 fixed - User-defined ticks in log scale were invisible.
1569 * Bug #13136 fixed - exists and isdef failed for input arguments longer than 1.
1571 * Bug #13139 fixed - fft help page fixed.
1573 * Bug #13140 fixed - Various typos fixed in help pages.
1575 * Bug #13144 fixed - csvRead can now ignore header comments thanks to a new input argument.
1577 * Bug #13146 fixed - profile failed when a comment was on the same line as a function declaration.
1579 * Bug #13150 fixed - Vectorial export used too much memory for grayplot.
1581 * Bug #13152 fixed - Typo fixed in syslin French help page.
1583 * Bug #13164 fixed - Miscolorization in SciNotes colors preferences fixed.
1585 * Bug #13165 fixed - Preferences reset did not show a confirmation pop-up.
1587 * Bug #13168 fixed - Wrong interpretation of star followed by minus fixed.
1589 * Bug #13170 fixed - Legends for plzr plots fixed.
1591 * Bug #13174 fixed - Scilab crashed after XML element removal.
1593 * Bug #13175 fixed - argn help page updated with specific cases.
1595 * Bug #13177 fixed - Error when changing x_ticks.locations on axes fixed.
1597 * Bug #13185 fixed - When the "checked" option of a uimenu was set to "on" for
1598 the first time, the display order of other uimenus was changed.
1600 * Bug #13186 fixed - csvRead freezed Scilab if separator was an empty string.
1602 * Bug #13187 fixed - xmltoformat did not include "imageobjects" in output.
1604 * Bug #13188 fixed - The output argument of eomday function was not pre-dimensioned.
1606 * Bug #13191 fixed - isempty(rational) returned an error message.
1608 * Bug #13192 fixed - horner returned an error message when the input arguments did not have the same size.
1610 * Bug #13194 fixed - part help page improved.
1612 * Bug #13199 fixed - There was a thin blue line around acknowledgements button in about box.
1614 * Bug #13200 fixed - about() ACKNOWLEDGEMENTS did not render utf-8 characters.
1616 * Bug #13201 fixed - x_mdialog entries had no margin.
1618 * Bug #13202 fixed - kernel help page improved.
1620 * Bug #13203 fixed - Typos fixed in some error messages.
1622 * Bug #13205 fixed - group accepted continuous transfer functions.
1624 * Bug #13208 fixed - New nanreglin function to handle NaNs for reglin().
1626 * Bug #13210 fixed - Incorrect argument description in mseek help page.
1628 * Bug #13213 fixed - User-defined margins were reset by auto computation of the margins.
1630 * Bug #13215 fixed - clf(1001) returned an error.
1632 * Bug #13218 fixed - Typos fixed in core module help pages.
1634 * Bug #13226 fixed - Completion with accented chars could led to a crash.
1636 * Bug #13227 fixed - Invalid windowsConfiguration.xml file could avoid Scilab startup.
1638 * Bug #13233 fixed - Wrong simulation result of step response csim('step',t,H) fixed.
1640 * Bug #13234 fixed - lmitool calling sequence clarified.
1642 * Bug #13236 fixed - "parents" help page has been renamed to "parentheses".
1644 * Bug #13238 fixed - Wrong legends display fixed.
1646 * Bug #13243 fixed - optim with "gc" option failed when imp<0.
1648 * Bug #13247 fixed - Hypermatrix in structure definition did not work properly.
1650 * Bug #13252 fixed - Minor typos fixed in Graphics messages.
1652 * Bug #13258 fixed - Bad number display in datatips fixed.
1654 * Bug #13267 fixed - Implicit typecasts in scicos.c fixed.
1656 * Bug #13271 fixed - plot2d with logarithmic scale and %nan value froze Scilab.
1658 * Bug #13272 fixed - Error occurring when reading CSV files with comment option on a CSV file without comment fixed.
1660 * Bug #13280 fixed - Axes were not always displayed properly after figure resize.
1666 * Bug #7350 fixed - The I/O ports numbering of a superblock was not updated
1667 when a new port was dropped.
1669 * Bug #8570 fixed - "Region to superblock" has been renamed to
1670 "Selection to superblock".
1672 * Bug #9995 fixed - LOGICAL_OP drew the parameters over the block.
1674 * Bug #11518 fixed - CLR block-text was displayed out of the bounding box
1677 * Bug #11776 fixed - CMSCOPE did not take into account label&Id parameter.
1679 * Bug #11975 fixed - Inverted Pendulum demonstration did not compile.
1681 * Bug #12359 fixed - Xcos files have been converted to ZCOS to gain some space.
1683 * Bug #12384 fixed - Using a Modelica part linked with an explicit link to
1684 another Modelica part led to an algebraic loop error.
1686 * Bug #12387 fixed - The "Modelica initialize" setup menu option did not blur
1689 * Bug #12414 fixed - SWITCH_m block had different behaviors
1690 for different types of inputs.
1692 * Bug #12423 fixed - Data types of SWITCH2_m were not documented.
1694 * Bug #12424 fixed - Calling lincos on a derivative block made Scilab crash.
1696 * Bug #12449 fixed - QUANT_f was not rounding/truncating/flooring/ceiling properly input signal.
1698 * Bug #12460 fixed - xcosPalGenerateAllIcons sometimes crashed Scilab.
1700 * Bug #12461 fixed - Cancelling zoom out by zooming in did not fully work.
1702 * Bug #12561 fixed - SELECT_m and RELAY_f did not behave as expected.
1704 * Bug #12568 fixed - "Recent files" menu entry is now below the "Open" one.
1706 * Bug #12590 fixed - Block shape style was removed on file loading.
1708 * Bug #12603 fixed - ZCOS files could contain blocks with modified (eg. invalid)
1711 * Bug #12619 fixed - DLR discrete block did not display LaTeX formula
1712 like CLR continuous block.
1714 * Bug #12651 fixed - The 'nw' scicos_simulate option did not work while
1715 passing a previous Info simulation status.
1717 * Bug #12664 fixed - Inverted pendulum French localization in the Xcos demonstrations was
1720 * Bug #12667 fixed - 'Recent Files' menu was not localized.
1722 * Bug #12685 fixed - The lincos and steadycos functions did not load
1723 the XcosLibs so all the blocks were unknown.
1725 * Bug #12731 fixed - Code generation produced erroneous block.
1727 * Bug #12732 fixed - Improper Copyright comments in the files were generated by the code
1730 * Bug #12796 fixed - There was some mismatches between implicit
1731 and explicit ports of superblocks.
1733 * Bug #12797 fixed - I/O blocks generated by "Selection to Superblocks" had
1736 * Bug #12868 fixed - There were several problems with PULSE_SC block.
1738 * Bug #12869 fixed - min and max were not defined but used in Xcos generated code.
1740 * Bug #12873 fixed - scicos_flat produced an unexpected error after a diagram
1743 * Bug #12874 fixed - CSCOPE marks sizes were too small.
1745 * Bug #12877 fixed - Incorrect output port dimensions and types in GENSIN_f, GENSQR_f,
1746 STEP_FUNCTION and STEP blocks fixed.
1748 * Bug #12924 fixed - Blocks type 2004 was not handled as a valid block type.
1750 * Bug #12934 fixed - Separate compilation of a superblock could fail due to under
1751 determined signal sizes.
1752 * Bug #12998 fixed - 'ans' was not ignored in the context results.
1754 * Bug #13006 fixed - Selection to superblock (in_f and out_f) failed.
1756 * Bug #13030 fixed - Selection to superblock did not reset the origin.
1758 * Bug #13059 fixed - NaN propagated at startup made the simulation fail.
1760 * Bug #13071 fixed - Three unused functions in Xcos macros now specified as not mandatory
1761 to write new blocks.
1763 * Bug #13172 fixed - Logic block help file had some typo errors.
1765 * Bug #13239 fixed - Grid was not shown in zoomed log scale.
1767 * Bug #13250 fixed - CLSS wrongly handled scalar values.
1771 Changes between version 5.5.0-beta-1 and 5.5.0
1772 ==============================================
1774 GUI Refactoring and Improvements
1775 ================================
1777 * New uicontrols styles:
1778 - tab: component which enables the user to switch between sets of uicontrols by
1780 The children components are "frame" uicontrols.
1781 Two dedicated properties have been added to configure this component:
1782 - title_position: Position of the tabs
1783 - title_scroll: Indicates if tabs must all be displayed at a time or
1784 managed with scroll features.
1785 - layer: Component which enables the user to make parts of a GUI visible/invisible
1787 - spinner: Component which enables the user to select/edit a value between bounds
1790 * New uicontrols properties:
1791 - border: Used to set some decoration properties on "frame" uicontrols.
1792 These decorations can be created and initialized with the createBorder
1793 and the createBorderFont functions.
1794 - scrollable: Used to add scrolling capabilities on "frame" uicontrols.
1795 - groupname: Used to group "radiobutton" and "checkbox" uicontrols for an easier
1797 - icon: Add an icon to "pushbutton", "text" and "frame" uicontrols.
1798 - margin: Empty space around uicontrols.
1800 * New uimenu properties:
1801 - icon: add an icon on the left of the menu label.
1803 * "listbox" and "popupmenu" style uicontrols can now manage colors selection, icons, background
1804 and foreground colors when the "String" property is set to a matrix matching the format:
1805 ["#color1", "Item1", "#background1", "#foreground1"; "#color2", "Item2", ..., ...]
1806 ["icon1", "Item1", "#background1", "#foreground1"; "icon2", "Item2", ..., ...]
1807 with "#color1", "#background1" and "#foreground1" in HTML format #XXXXXX.
1808 Then the component will display a colored box or icon on the left of the associated string,
1809 and different background/foreground colors for items.
1811 * New management of uicontrols positioning:
1812 In previous versions, uicontrols position was managed in an absolute way through
1813 their "Position" property and the "Resizefcn" property of their parent figure.
1814 Using the new layout management in figures and "frame" style uicontrols, position
1815 is now managed in an automatic way based on Java layouts.
1816 New dedicated properties have been added in figure and uicontrols:
1817 - layout: layout type.
1818 - layout_options: configuration of the layout.
1819 Options can be initialized with the createLayoutOptions function.
1820 Type "help layouts" in Scilab for more information about available types and options.
1821 Uicontrols position is then managed through the "constraints" property.
1822 A new createConstraints function has been added to managed these contraints.
1824 * New figures properties:
1825 - icon: Allows to customize the figure icon.
1826 - menubar: allows to create windows without any menu bar (default menus will not be created).
1827 - menubar_visible: Manages menu bar visibility.
1828 - toolbar: Allows to create windows without any toolbar.
1829 - toolbar_visible: Manages toolbar visibility.
1830 - infobar_visible: Manages infobar visibility.
1831 - resize: Allows to lock window size.
1832 - dockable: Allows to create dockable/standard figures.
1833 - default_axes: Allows to manage default axes creation in figures.
1835 * The figure "visible" property management has evolved and offers new possibilities:
1836 - When the figure is docked, this property manages the visibility
1837 of components inside the figure (uicontrols, axes, ...).
1838 In previous releases, this same property setting only managed axes.
1839 - When the figure is not docked, this property manages the visibility
1840 of the whole figure including its decorations.
1842 * New way to create GUI using XML files:
1843 - Created GUI using the figure/uicontrol/uimenu functions can now be saved in
1844 this new format using saveGui function.
1845 - XML files in this format can be loaded in Scilab using the loadGui function.
1846 This function aims at creating GUI in a more efficient way.
1848 * New rendering for GUI/uicontrols:
1849 In this version, uicontrols use the defaults of the OS Look & Feel.
1850 Some properties default values are not set by Scilab and then can be different from an
1852 To come back to the previous and deprecated behavior, you can use the related
1853 property on the "Console" handle:
1854 set(get(0), "UseDeprecatedSkin", "on");
1855 Note that this deprecated behavior will be removed in future versions.
1857 * New way to access uicontrols using a path containing their "Tag" and their parent(s) "Tag" property.
1858 See the set and get functions help page for more details.
1860 * New display for uicontrols handles properties. Only properties used for Java rendering are displayed.
1861 To display all available properties, use the "ShowHiddenProperties" "Console" property.
1867 * set function prototype has been modified to allow the user to set multiple
1868 properties at once: set(h, "Property1", Value1, "Property2", Value2, ...)
1870 * newaxes function now allows to create axes in "frame" uicontrols.
1872 * clf function now also works with "frame" uicontrols.
1874 * New axes properties:
1875 - ticks_format: Format of the ticks labels.
1876 - ticks_st: Scales and translates factors applied to ticks position when formatting
1878 - auto_margins: Activated by default, this property lets Scilab compute margins
1879 needed to display axes decorations (titles, labels, ...).
1880 - grid_thickness: Thickness of the grid plotting.
1881 - grid_style: Style of the grid plotting.
1882 - label_font_style: Font style used to draw the labels.
1884 * New legends properties:
1885 - line_width: Width of the drawn line.
1886 - mark_count: Number of the drawn marks.
1888 * New polyline properties:
1889 - mark_offset: Offset before the first mark.
1890 - mark_stride: Step between consecutive marks.
1891 - display_function: Name of the function used to customize the information
1892 displayed in all the datatips of this polyline.
1893 This function can be overloaded by setting a display
1894 function on each datatip handle.
1895 - display_function_data: Additional data needed for datatips display function.
1896 - datatips: Handles of the datatips of the polyline.
1898 * New Matplot property added :
1899 - rect: specifies the rectangle where the Matplot will be drawn.
1901 * Datatips properties have been renamed for better readability:
1903 - tip_box_mode --> box_mode
1904 - tip_label_mode --> label_mode
1905 - tip_orientation --> orientation
1906 - tip_3component --> z_component
1907 - tip_auto_orientation --> auto_orientation
1908 - tip_interp_mode --> interp_mode
1909 - tip_disp_function --> display_function
1915 * New functions introduced:
1916 - jcreatejar - Creates a Java archive (JAR) from a set of files / directories
1917 - ilib_build_jar - Builds Java packages from sources into a JAR file
1918 - ifftshift - Inverses FFT shift
1919 - unwrap - Unwraps/unfolds a Y(x) profile
1920 - getPreferencesValue/setPreferencesValue - Get or set values in the preferences file.
1921 - htmlDump/htmlRead/htmlReadStr/htmlWrite - Read and write data from/in HTML files.
1922 - numderivative - Approximate derivatives of a function (Jacobian or Hessian).
1924 * modulo and pmodulo now support integers & hypermatrices (See bug #13002).
1926 * test_run can now separate 32-bit systems from 64-bit ones.
1928 * pol2str: now handles polynomials with complex coefficients and hypermatrices (See bug #13109).
1930 * nanreglin: reglin with arguments containing NaNs (See bug #13208).
1932 * New optional input argument added to matfile2sci (append or write the output file).
1938 * xcos_debug_gui function added for a simple use of the Debug block.
1940 * tbx_build_pal_loader function added to ease external module creation (See SEP #120).
1942 * Event management demonstrations added.
1944 * API change: In scicos_block4.h, "Residute" renamed to "Jacobian".
1947 Obsolete & Removed Functions
1948 ============================
1950 * relocate_handle tagged as obsolete. Will be removed in Scilab 5.5.1.
1952 * msd and st_deviation tagged as obsolete (See bug #7593). Will be removed in Scilab 5.5.1.
1953 Please use stdev instead.
1955 * pcg tagged as obsolete. Will be removed in Scilab 5.5.1.
1956 Please use conjgrad instead.
1958 * milk_drop tagged as obsolete. Will be removed in Scilab 5.5.1.
1960 * datatipGetStruct tagged as obsolete. Will be removed in Scilab 5.5.1.
1961 Please use 'datatips' property instead.
1963 * regress tagged as obsolete. Will be removed in Scilab 5.5.1.
1964 Please use reglin instead.
1966 * %asn tagged as obsolete. Will be removed in Scilab 5.5.1.
1967 Please use delip instead.
1969 * jmat tagged as obsolete. Will be removed in Scilab 5.5.1.
1970 Please use flipdim instead.
1972 * perl tagged as obsolete. Will be removed in Scilab 6.0.0.
1974 * numdiff and derivative tagged as obsolete. Will be removed in Scilab 6.0.0.
1975 Please use numderivative instead.
1977 * xmltochm tagged as obsolete. Will be removed in Scilab 5.5.1.
1979 * clear_pixmap removed, please use drawlater/drawnow instead.
1981 * pixmap property removed for figures, please use drawlater/drawnow instead.
1983 * demo_message and demo_mdialog removed.
1985 * with_embedded_jre removed.
1989 * fit_dat removed. Please use datafit instead.
1991 * winclose removed. Please use close instead.
1993 * datatipInitStruct and datatipRedraw removed.
1995 * getfont, getmark, getlinestyle and getsymbol removed. Please use ged instead.
2001 * Minimal version of JoGL (2.1.4) enforced.
2003 * Minimal version of JLaTeXMath (1.0.3) enforced.
2005 * New dependencies to manage EMF export:
2006 - freehep-graphics2d.jar
2007 - freehep-graphicsio-emf.jar
2008 - freehep-graphicsio.jar
2011 Note: --without-emf can be used to disable this feature.
2014 Known incompatibilities
2015 ========================
2017 * Using => or =< now returns an error. See bug #2345.
2019 * or/and functions now fix reals value before working on them. See bug #7666.
2021 * a*b*-c+d is now interpreted as (a*b*(-c))+d instead of a*b*(-c+d). See bug #13168.
2023 * Extracting children from an empty matrix of handles now returns an error.
2024 For example: f=gcf(); f.children(1).children.children returns an error.
2026 * Figure anti_aliasing property behavior changed:
2027 - "off": No anti-aliasing activated on the figure.
2028 - "2x", "4x", "8x", "16x": anti-aliasing activation will have no effect on most plateforms.
2034 * Bug #1253 fixed - There was no possibility to draw only few marks on a polyline which
2035 contained a lot of points.
2037 * Bug #1751 fixed - Margins were not computed according to contents.
2039 * Bug #2067 fixed - Scilab crashed when plot was called with a large numerical value.
2041 * Bug #2345 fixed - Use of operators => and =< did not lead to an error.
2043 * Bug #2802 fixed - convstr did not convert non ascii chars.
2045 * Bug #4083 fixed - The numdiff and derivative functions were duplicates and are
2046 now tagged as obsolete and replaced by numderivative. See SEP #130.
2048 * Bug #4177 fixed - find function moved to the "elementary_functions" module.
2050 * Bug #4401 fixed - isnum did not recognize all constants or some complex numbers.
2052 * Bug #4490 fixed - Input argument of sinc function moved to rad.
2054 * Bug #4649 fixed - License issue in xs2ppm help page fixed.
2056 * Bug #4677 fixed - xclick did not return correct mouse position on keyboard event.
2058 * Bug #4692 fixed - Export did not work while xgetmouse was waiting.
2060 * Bug #4858 fixed - libintl.h was missing in binary versions but included in localization.h.
2062 * Bug #4965 fixed - Setting links property for a handle of type legend did not work.
2064 * Bug #5016 fixed - condestsp could return different results when repeated calls were performed.
2066 * Bug #5232 fixed - 'frame' uicontrols children now follow the frame displacement.
2068 * Bug #5826 fixed - Graphic windows did not redirect key events in console.
2070 * Bug #5844 fixed - grayplot did not have a logflag option.
2072 * Bug #5886 fixed - There was no property labels_font_style on axis.
2074 * Bug #6191 fixed - It was not possible to set thickness and line_style properties for a grid.
2076 * Bug #6305 fixed - dsearch function did not work with integers, strings and hypermatrices.
2078 * Bug #6306 fixed - It is now possible to compute an histogram instead of plotting it
2079 with new function histc(). Besides, histplot can now return the computed data.
2081 * Bug #6363 fixed - It was not possible to create figures without menubar/toolbar.
2083 * Bug #6404 fixed - xrects help page was not clear about argument specification.
2085 * Bug #6476 fixed - Matplot help did not indicate that the data field should be used to update data.
2087 * Bug #6512 fixed - %asn function tagged as obsolete.
2089 * Bug #6615 fixed - ui(get|put)file did not center the file dialog on the last focused window.
2091 * Bug #6689 & #6690 fixed - grand now works with complexes, polynomials, booleans, integers, sparses and strings,
2092 and can handle row vectors, matrices and hypermatrices of thoses types.
2094 * Bug #6824 fixed - resize_matrix did not manage hypermatrices.
2096 * Bug #6832 fixed - Matrices of rationals can now be transposed via the " .' " operator.
2098 * Bug #6859 fixed - xlabel and xtitle could overlapped.
2100 * Bug #6930 fixed - Matplot handle had no rect property.
2102 * Bug #7038 fixed - A toggle button now manages datatip mode.
2104 * Bug #7040 fixed - Example and description for getMatrixOfIntegerPrecision modified in help page.
2106 * Bug #7047 fixed - milk_drop is now obsolete. It will be removed in Scilab 5.5.1, but will be kept as a demonstration.
2108 * Bug #7051 fixed - fieldnames help page updated.
2110 * Bug #7084 fixed - Old, not documented and deprecated gr_menu function removed.
2112 * Bug #7085 fixed - 'edit' uicontrols did not support multiple line edition.
2114 * Bug #7133 fixed - help_from_sci with no input argument now launches a full demonstration.
2116 * Bug #7169 fixed - It was not possible to specify different option value (thickness, style, ...) for X and Y grids.
2118 * Bug #7205 fixed - length(H) applied to a non-string hypermat returned 3 instead of size(H,"*").
2120 * Bug #7244 fixed - Extraction from a struct array with a boolean vector had a strange behavior.
2122 * Bug #7304 fixed - exportUI did not switch filename extension when filter was changed.
2124 * Bug #7417 fixed - Auto-positioning of datatips did not take the curvature into account.
2126 * Bug #7561 fixed - roots help page now explains that coefficients are used in the contrary order of poly.
2128 * Bug #7570 fixed - The switch criterion on x and y is now explained in beta() help page.
2130 * Bug #7585 fixed - psi.f moved from "elementary functions" to "special functions" module.
2132 * Bug #7593 fixed - stdev now encompasses msd and st_deviation thanks to a new optional input argument.
2134 * Bug #7650 fixed - isempty(tlist(...)) always returned false, even when all defined fields were empty.
2136 * Bug #7666 fixed - Inconsistencies between and/or and &/| fixed.
2138 * Bug #7705 fixed - "dimension", "minbounds" and "maxbounds" fields have been documented in Genetic algorithms help pages.
2140 * Bug #7739 fixed - Axis position was invalid in log modes.
2142 * Bug #7771 fixed - There was no item about arrow_size in champ_properties help page.
2144 * Bug #7772 fixed - There was no description, no example about line_style property in polyline help page.
2146 * Bug #7858 fixed - variance and variancef can now return the mean of the input
2147 in a new output argument and take the a priori mean as input.
2149 * Bug #7879 fixed - string now accepts plist type, and printing a plist displays that string.
2151 * Bug #7905 fixed - Figure icon can now be changed using dedicated property.
2153 * Bug #7916 fixed - nansum([]) returned NaN value while this function had to ignore it.
2155 * Bug #7986 fixed - spec gateway renamed from sci_eig.c to sci_spec.c.
2157 * Bug #7999 fixed - SwingScilabFileChooser.getFilterIndex() was unusable.
2159 * Bug #8031 fixed - cdfgam error message fixed.
2161 * Bug #8060 fixed - Improved list display in the variable browser.
2163 * Bug #8131 fixed - It was not possible to choose the number of marks and the line width in legends.
2165 * Bug #8133 fixed - Ticks disappeared in planar 3-D view.
2167 * Bug #8196 fixed - Error messages dealing with negative thickness were not standard.
2169 * Bug #8231 fixed - xrect help page did not say that clipping property was inherited.
2171 * Bug #8247 fixed - regress tagged as obsolete.
2173 * Bug #8290 fixed - DELAYV_f block documentation fixed.
2175 * Bug #8323 fixed - Scilab "About Box" did not hide Scilab main window.
2177 * Bug #8337 fixed - mtlb_rand now uses the "uniform" rule, whatever the random rule set is.
2179 * Bug #8379 fixed - It was not possible to delete the selected datatip with DELETE or BACKSPACE.
2181 * Bug #8745 fixed - Extracting from an empty matrix automatically returned an empty matrix.
2183 * Bug #8956 fixed - xpoly, xfpoly, xrect, xsegs and xarc did not update data_bounds property.
2185 * Bug #9031 fixed - Misalignment of text when using xstring with a matrix fixed.
2187 * Bug #9033 fixed - auto_dimensioning property for text handles was not documented.
2189 * Bug #9110 fixed - Examples and references to other functions added in Statistics help pages.
2191 * Bug #9309 fixed - comparison help page updated to document issue with empty matrix.
2193 * Bug #9319 fixed - Huge polylines could not be exported in PS/EPS.
2195 * Bug #9444 fixed - with_embedded_jre function removed.
2197 * Bug #9493 fixed - Title is now correctly set when starting Scilab and focus is set on Console.
2199 * Bug #9627 fixed - Arguments checking added in optimsimplex_* functions.
2201 * Bug #9697 fixed - Displayed information for optim "qn" and "gc" with bounds and imp=1 fixed.
2203 * Bug #9701 fixed - optim with "qn" option was failing for large problems.
2205 * Bug #9819 fixed - unwrap function did not exist in Scilab.
2207 * Bug #9840 fixed - Default G tolerance in lsqrsolve was too large.
2209 * Bug #10012 fixed - lmisolver and lmitool called with no input now produce errors.
2211 * Bug #10083 fixed - plot3d could not be used with only one input argument.
2213 * Bug #10122 fixed - replot could not be used in 3-D.
2215 * Bug #10175 fixed - Clearer example added for sp2adj to adj2sp conversion (and backwards conversion).
2217 * Bug #10214 fixed - evstr help page updated to mention that input argument must not be composed of
2218 continuation marks (..).
2220 * Bug #10221 fixed - ifftshift function did not exist in Scilab.
2222 * Bug #10234 fixed - reglin function moved from CACSD to Statistics module.
2224 * Bug #10243 fixed - fun2string(X) called X before returning its code.
2226 * Bug #10271 fixed - ordmmd now checks the consistency of the third input argument with the
2227 input matrix defined by the first two input arguments.
2229 * Bug #10273 fixed - spchol help page now displays an example showing how to use its output arguments.
2231 * Bug #10391 fixed - Error when using completion after a global variable clear fixed.
2233 * Bug #10428 fixed - Java based components of Scilab showed a library load error in CLI mode.
2235 * Bug #10445 fixed - In SciNotes, CTRL+Drag&Drop moved text rather than copying it.
2237 * Bug #10470 fixed - In SciNotes, split "Horizontally" or "Vertically" was meaningless.
2239 * Bug #10621 fixed - Figure without docking/undocking capabilities can now be created.
2241 * Bug #10645 fixed - File encoding could not be given as argument in xmlRead.
2243 * Bug #10718 fixed - New "Resize" property added to figures.
2245 * Bug #10805 fixed - Documentation on left bracket was superfluous and is now removed.
2246 Refer to brackets for information on "[" and "]".
2248 * Bug #10816 fixed - Typo in part error message fixed.
2250 * Bug #10830 fixed - Hypermatrix insertion with a negative index returned a wrong error message.
2252 * Bug #10833 fixed - exists help page updated.
2254 * Bug #10840 fixed - Keyboard arrows were disabled on 'slider' type uicontrols.
2256 * Bug #10856 fixed - analpf did not return the right result.
2258 * Bug #10932 fixed - Startup directory was not saved/restored in preferences.
2260 * Bug #10936 fixed - Scilab hung with invalid strf in plot2d.
2262 * Bug #10942 fixed - Function soundsec revised. Now soundsec can be used for non integer values of time.
2264 * Bug #10998 fixed - matrix*hypermatrix and hypermatrix*matrix operations failed.
2266 * Bug #11001 fixed - exists and isdef did not work with primitives.
2268 * Bug #11007, #11008 & #11009 fixed - New conjgrad function (Conjugate Gradient methods "pcg", "cgs", "bicg" and "bicgstab").
2270 * Bug #11303 fixed - Exception while searching with multiple tabs in SciNotes fixed.
2272 * Bug #11305 fixed - Performances improved with a better way to update data in Graphics.
2274 * Bug #11523 fixed - In SciNotes, 'whereami line numbering' was not clear enough.
2276 * Bug #11571 fixed - x_mdialog did not let the Look&Feel select the window size.
2278 * Bug #11575 fixed - There was no preview of GIF files in exportUI dialog.
2280 * Bug #11576 fixed - exportUI did not propose gcf().figure_name as default file name.
2282 * Bug #11616 fixed - Figure menubar could not be made invisible.
2284 * Bug #11629 fixed - Interactive zoom did not work properly in datatip mode.
2286 * Bug #11680 fixed - GUI functions in Scilab 5.4.X were much slower than in Scilab 5.3.3.
2288 * Bug #11714 fixed - help_from_sci sometimes failed when input function had "<imagedata>" comments.
2290 * Bug #11779 fixed - Wrong variable type in the documentation of getNbInputArgument and getNbOutputArgument fixed.
2292 * Bug #11789 fixed - Documentation was missing for nbInputArgument.
2294 * Bug #11814 fixed - Typo in CACSD help chapter fixed.
2296 * Bug #11876 fixed - ilib_include_flag now returns a string when called with a string column vector as input.
2298 * Bug #11953 fixed - Scilab crashed when global("") was typed.
2300 * Bug #11964 fixed - uicontrol coordinates system did not take figure resize into account.
2302 * Bug #11996 fixed - eye extended to hypermatrix.
2304 * Bug #12012 fixed - Misleading perl function should not be part of Scilab (tagged as obsolete).
2306 * Bug #12037 fixed - Simplified Chinese version of SciNotes displayed warnings at startup.
2308 * Bug #12073 fixed - Width of code examples has been decreased in XML help pages.
2310 * Bug #12082 fixed - convstr function did not work with non-ASCII symbols.
2312 * Bug #12121 fixed - inv function did not work for complex sparse matrices.
2314 * Bug #12130 fixed - flipdim can now flip blocks, thus making jmat obsolete.
2316 * Bug #12145 fixed - demo_mdialog internal function removed.
2318 * Bug #12156 fixed - Closing a Scilab session in Javasci could led to a HDF5 error message.
2320 * Bug #12170 fixed - Calling matfile_listvar on an empty file returned an error.
2322 * Bug #12306 fixed - Invalid memory free on completion in NWNI mode fixed.
2324 * Bug #12308 fixed - create_palette help page removed (function removed).
2326 * Bug #12334 fixed - Mark color in legend was invalid.
2328 * Bug #12412 fixed - Typo fixed in some error messages.
2330 * Bug #12439 fixed - edit_error returned a wrong message when there was no recorded error.
2332 * Bug #12440 fixed - Unitary test added for bitxor.
2334 * Bug #12465 fixed - ATOMS Default categories names were not localized.
2336 * Bug #12472 fixed - grand and link error messages fixed.
2338 * Bug #12481 fixed - xlabel could not be used with Scilab property names.
2340 * Bug #12485 fixed - xchange returned bad values with log scale.
2342 * Bug #12492 fixed - Exported EPS files were invalid when dash patterns were too long.
2344 * Bug #12496 fixed - zoom_rect could led to a crash in log scale.
2346 * Bug #12535 fixed - In a French localized Scilab, comma was used as decimal separator when zooming (rather than point).
2348 * Bug #12567 fixed - Error messages fixed in ricc.
2350 * Bug #12622 fixed - Various typos fixed in error messages.
2352 * Bug #12672 fixed - Ticks part of axes_property help page updated.
2354 * Bug #12673 fixed - Ticks were drawn outside of axes area.
2356 * Bug #12682 fixed - Key events were disabled after zooming.
2358 * Bug #12683 fixed - proc_name(k, gwin) callback was badly managed depending on
2359 input arguments of addmenu function.
2361 * Bug #12714 fixed - csvDefault("decimal", ",") returned %f while this value was valid.
2363 * Bug #12716 fixed - In SciNotes, RTL languages were not correctly displayed.
2365 * Bug #12725 fixed - Datatips did not work in logarithmic scale.
2367 * Bug #12733 fixed - There was no way to direct graphs to nothing with driver function.
2369 * Bug #12737 fixed - In SciNotes, autosave did not create directory if it did not exist.
2371 * Bug #12763 fixed - Value of "listbox" style uicontrols was not updated when using arrow keys.
2373 * Bug #12769 fixed - xset("window", 1) did not set the current axes.
2375 * Bug #12784 fixed - Misleading error message in many functions when passing an integer
2376 argument instead of double argument fixed.
2378 * Bug #12785 fixed - plot did not allow int data as first argument.
2380 * Bug #12803 fixed - warning(['foo','bar']) printed two 'WARNING: '.
2382 * Bug #12819 fixed - Link to contributors website page fixed in the documentation.
2384 * Bug #12826 fixed - <warning> and <note> tags were not managed in the documentation.
2386 * Bug #12854 fixed - configure failed to detect custom installation of docbook.
2388 * Bug #12860 fixed - Missing semicolon in style.css added.
2390 * Bug #12880 fixed - A warning is displayed when transposing arguments of plot.
2392 * Bug #12882 fixed - Some help pages were not clear.
2394 * Bug #12896 fixed - Typos fixed in XML module error messages.
2396 * Bug #12900 fixed - It is now possible to set proxy options in Preferences.
2398 * Bug #12910 fixed - Typos fixed in several help pages.
2400 * Bug #12938 fixed - No Java compiler was available in Linux binary version.
2402 * Bug #12943 fixed - Datatips did not work properly when 2-D plots were rotated.
2404 * Bug #12945 fixed - Datatips could not be dragged properly in zoomed axes.
2406 * Bug #12948 fixed - When host was not found, getURL caused a crash to desktop.
2408 * Bug #12950 fixed - getURL ignored the proxy settings under Windows.
2410 * Bug #12951 fixed - Interactive zoom was broken.
2412 * Bug #12952 fixed - It was not always possible to search a word in a file with SciNotes.
2414 * Bug #12956 fixed - splitURL with no protocol in URL provoked an access
2415 violation exception.
2417 * Bug #12957 fixed - splitURL and getURL were not declared as new 5.5 functions.
2419 * Bug #12962 fixed - xinfo documentation was not clear.
2421 * Bug #12967 fixed - Data editor icon was not 16x16.
2423 * Bug #12963 fixed - drawaxis did not place the axis properly.
2425 * Bug #12966 fixed - Rotation, tool tip and other Xcos plot actions were
2426 disabled by default.
2428 * Bug #12968 fixed - A variable named 'temp' could not be saved.
2430 * Bug #12971 fixed - getURL downloaded file name was wrong.
2432 * Bug #12973 fixed - Exception occurring when clicking on a figure at creation fixed.
2434 * Bug #12976 fixed - getURL returned a file name instead of a file path.
2436 * Bug #12978 fixed - exportUI returned an error when input argument was a figure handle.
2438 * Bug #12979 fixed - exportUI did not work with vectorial export.
2440 * Bug #12990 fixed - GED features conflicted with figure events.
2442 * Bug #12992 fixed - The sigma value was always equal to "LM" in eigs.
2444 * Bug #12993 fixed - stdev returned value depended on 'x' being defined in the environment.
2446 * Bug #13000 fixed - []./int8(3) and on int8(3)./[] led to an endless recursive.
2448 * Bug #13002 fixed - modulo and pmodulo did not support integers & hypermatrices.
2450 * Bug #13003 fixed - String to enum converter added to Java external objects.
2452 * Bug #13004 fixed - Debug infos were displayed in case of an error with eoj.
2454 * Bug #13005 fixed - jcompile did not use the classpath to compile.
2456 * Bug #13007 fixed - Compilation errors were not returned by jcompile.
2458 * Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
2460 * Bug #13010 fixed - Wrong class was returned by jcompile (with ecj).
2462 * Bug #13011 fixed - ilib_compile failed under Mac OS X 10.9.
2464 * Bug #13012 fixed - Vectorial export of rotated strings was wrong.
2466 * Bug #13013 fixed - In SciNotes, the first proposed directory to save a file was not current working directory.
2468 * Bug #13014 fixed - Update of the efficiency inner variable improved in optim_ga.
2470 * Bug #13015 fixed - Computation of efficiency inner variable improved in optim_ga.
2472 * Bug #13022 fixed - Vectorial export did not clip large segments.
2474 * Bug #13023 fixed - xs2pdf crashed under Windows when the target file was already opened.
2476 * Bug #13027 fixed - There was no autowrap into array in JIMS.
2478 * Bug #13031 fixed - Lorentz Butterfly demonstration fixed.
2480 * Bug #13032 fixed - CMATVIEW help page example fixed and CMAT3D help page example created.
2482 * Bug #13033 fixed - -1 could not be used as nax argument in plot2d.
2484 * Bug #13036 fixed - The help page associated to the history browser was wrong.
2486 * Bug #13041 fixed - Wrong result was returned for "integer scalar" minus "integer vector".
2488 * Bug #13042 fixed - Texts in graphics were not properly centered.
2490 * Bug #13047 fixed - jcompile did not allow class reloading.
2492 * Bug #13049 fixed - New handled protocols added in links in SciNotes.
2494 * Bug #13050 fixed - The result of mvvacov was not symmetric.
2496 * Bug #13051 fixed - SciNotes restoration could block desktop one.
2498 * Bug #13053 fixed - datatipCreate did not return datatip handle.
2500 * Bug #13055 fixed - Array indexing did not follow Scilab convention in JIMS.
2502 * Bug #13061 fixed - hdf5 demonstration failed with a read-only file.
2504 * Bug #13063 fixed - Color selection in SciNotes preferences threw exceptions.
2506 * Bug #13064 fixed - Deleting a link connected to a split led to a translated link.
2508 * Bug #13069 fixed - Documentation for %MODELICA_USER_LIBS updated.
2510 * Bug #13066 fixed - data_bounds was not fully documented in axes_properties.
2512 * Bug #13080 fixed - Contextual menu was unavailable for datatips management.
2514 * Bug #13082 fixed - Datatip mark style was not inherited from the parent polyline.
2516 * Bug #13083 fixed - Datatip marks did not inherit colors from the parent polyline.
2518 * Bug #13084 fixed - interp_mode property could not be set on all datatips of the same polyline.
2520 * Bug #13085 fixed - A datatip could not be moved on a circle.
2522 * Bug #13092 fixed - Optimizations now check the user function output (must be real).
2524 * Bug #13093 fixed - Removed trailing "\n" in the head_comments error message.
2526 * Bug #13101 fixed - When x-axis was in reverse position x_location='origin' failed.
2528 * Bug #13102 fixed - savematfile did not support "-v7.3" option.
2530 * Bug #13108 fixed - Time between ATOMS database updates is now a month (was a day) and is configurable.
2532 * Bug #13109 fixed - pol2str now supports polynomials with complex coefficients and hypermatrices.
2534 * Bug #13111 fixed - sqrt returned different results when imaginary part was -0 versus 0.
2536 * Bug #13114 fixed - clear_pixmap/pixmap property should have been removed in Scilab 5.4.1.
2538 * Bug #13116 fixed - qpsolve now respects upper-bounds constraints.
2540 * Bug #13119 fixed - mget and mgetl now return an error when called with decimal values as number of lines.
2542 * Bug #13121 fixed - ode "rk" option crashed Scilab when the user derivative function failed.
2544 * Bug #13127 fixed - There were no subticks with user defined ticks.
2546 * Bug #13132 fixed - There were missing graduations when data_bounds interval was too small.
2548 * Bug #13134 fixed - User-defined ticks in log scale were invisible.
2550 * Bug #13136 fixed - exists and isdef failed for input arguments longer than 1.
2552 * Bug #13139 fixed - fft help page fixed.
2554 * Bug #13140 fixed - Various typos fixed in help pages.
2556 * Bug #13144 fixed - csvRead can now ignore header comments thanks to a new input argument.
2558 * Bug #13146 fixed - profile failed when a comment was on the same line as a function declaration.
2560 * Bug #13150 fixed - Vectorial export used too much memory for grayplot.
2562 * Bug #13152 fixed - Typo fixed in syslin French help page.
2564 * Bug #13164 fixed - Miscolorization in SciNotes colors preferences fixed.
2566 * Bug #13165 fixed - Preferences reset did not show a confirmation pop-up.
2568 * Bug #13168 fixed - Wrong interpretation of star followed by minus fixed.
2570 * Bug #13170 fixed - Legends for plzr plots fixed.
2572 * Bug #13174 fixed - Scilab crashed after XML element removal.
2574 * Bug #13175 fixed - argn help page updated with specific cases.
2576 * Bug #13177 fixed - Error when changing x_ticks.locations on axes fixed.
2578 * Bug #13185 fixed - When the "checked" option of a uimenu was set to "on" for
2579 the first time, the display order of other uimenus was changed.
2581 * Bug #13186 fixed - csvRead freezed Scilab if separator was an empty string.
2583 * Bug #13187 fixed - xmltoformat did not include "imageobjects" in output.
2585 * Bug #13188 fixed - The output argument of eomday function was not pre-dimensioned.
2587 * Bug #13191 fixed - isempty(rational) returned an error message.
2589 * Bug #13192 fixed - horner returned an error message when the input arguments did not have the same size.
2591 * Bug #13194 fixed - part help page improved.
2593 * Bug #13199 fixed - There was a thin blue line around acknowledgements button in about box.
2595 * Bug #13200 fixed - about() ACKNOWLEDGEMENTS did not render utf-8 characters.
2597 * Bug #13201 fixed - x_mdialog entries had no margin.
2599 * Bug #13202 fixed - kernel help page improved.
2601 * Bug #13203 fixed - Typos fixed in some error messages.
2603 * Bug #13205 fixed - group accepted continuous transfer functions.
2605 * Bug #13208 fixed - New nanreglin function to handle NaNs for reglin().
2607 * Bug #13210 fixed - Incorrect argument description in mseek help page.
2609 * Bug #13213 fixed - User-defined margins were reset by auto computation of the margins.
2611 * Bug #13215 fixed - clf(1001) returned an error.
2613 * Bug #13218 fixed - Typos fixed in core module help pages.
2615 * Bug #13226 fixed - Completion with accented chars could led to a crash.
2617 * Bug #13227 fixed - Invalid windowsConfiguration.xml file could avoid Scilab startup.
2619 * Bug #13233 fixed - Wrong simulation result of step response csim('step',t,H) fixed.
2621 * Bug #13234 fixed - lmitool calling sequence clarified.
2623 * Bug #13236 fixed - "parents" help page has been renamed to "parentheses".
2625 * Bug #13238 fixed - Wrong legends display fixed.
2627 * Bug #13243 fixed - optim with "gc" option failed when imp<0.
2629 * Bug #13247 fixed - Hypermatrix in structure definition did not work properly.
2631 * Bug #13252 fixed - Minor typos fixed in Graphics messages.
2633 * Bug #13258 fixed - Bad number display in datatips fixed.
2635 * Bug #13267 fixed - Implicit typecasts in scicos.c fixed.
2637 * Bug #13271 fixed - plot2d with logarithmic scale and %nan value froze Scilab.
2639 * Bug #13272 fixed - Error occurring when reading CSV files with comment option on a CSV file without comment fixed.
2641 * Bug #13280 fixed - Axes were not always displayed properly after figure resize.
2647 * Bug #9995 fixed - LOGICAL_OP drew the parameters over the block.
2649 * Bug #11975 fixed - Inverted Pendulum demonstration did not compile.
2651 * Bug #12423 fixed - Data types of SWITCH2_m were not documented.
2653 * Bug #12685 fixed - The lincos and steadycos functions did not load
2654 the XcosLibs so all the blocks were unknown.
2656 * Bug #12998 fixed - 'ans' was not ignored in the context results.
2658 * Bug #13006 fixed - Selection to superblock (in_f and out_f) failed.
2660 * Bug #13030 fixed - Selection to superblock did not reset the origin.
2662 * Bug #13059 fixed - NaN propagated at startup made the simulation fail.
2664 * Bug #13071 fixed - Three unused functions in Xcos macros now specified as not mandatory
2665 to write new blocks.
2667 * Bug #13172 fixed - Logic block help file had some typo errors.
2669 * Bug #13239 fixed - Grid was not shown in zoomed log scale.
2671 * Bug #13250 fixed - CLSS wrongly handled scalar values.
2676 Changes between version 5.4.1 and 5.5.0-beta-1
2677 ==============================================
2682 * New special functions:
2683 - erfi - The imaginary error function.
2684 - dawson - Compute the Dawson function (scaled imaginary error).
2686 * New functions introduced:
2687 - getURL - Download a URL (HTTP, HTTPS, FTP...)
2688 - splitURL - Split a URL (HTTP, HTTPS, FTP...)
2689 - cov - Covariance matrix. Deprecates mvvacov. See bug #11896.
2690 - ismatrix - Check if a variable is a matrix. See bug #10456.
2691 - isrow - Check if a variable is a row vector. See bug #10456.
2692 - iscolumn - Check if a variable is a column vector. See bug #10456.
2693 - issquare - Check if a variable is a square matrix. See bug #10456.
2694 - cross - Vector cross product. See bug #9941.
2695 - members - Number of occurrences and linear indexes of common values between
2696 two matrices of the same type.See bug #12705.
2698 * Complete set of functions to read and write any HDF5 file from Scilab added.
2701 - daskr - differential-algebraic system solver with rootfinding 'daskr', using
2702 BDF methods with direct and preconditioned Krylov linear solvers, based on ODEPACK.
2704 * Based on JIMS external module, Scilab provides functions to interact
2707 * erf, erfc, erfcx and calerf functions now support complex arguments.
2709 * isnum has been redesigned in native code. Performance improvements up to 130x.
2712 * Usage of the '$' keyword in part function allowed.
2714 * The histplot command can now be used with the option polygon=%t/%f to add the
2715 frequency polygon chart (Thanks to Mehran Khorshidi).
2717 * Multi level completion on mlist, struct, XML structures...
2719 * Variable browser improvements:
2720 - The variable browser also shows the size of integers and the user type of
2722 See bugs #12523 and #10409.
2723 - It is now possible to delete variables from the variable browser.
2725 - A user can now plot variables from the variable browser (this functionality was
2726 already available in the variable editor).
2728 * Added lighting effect for plot of surfaces. Lighting can be enabled
2729 creating light objects or disabled by deleting them. The following function
2731 - light - Creates a light graphic object.
2734 - Multiple domains in localization managed.
2735 - addlocalizationdomain function added for a new domain creation.
2736 - Optional parameter added to gettext to manage domains.
2737 - tbx_generate_pofile and tbx_build_localization added to create localization files for
2740 * Windows Solution updated to Visual Studio 2012.
2742 * -keepconsole option added for Scilab Windows to facilitate debugging.
2743 Calling Scilab with this option will leave the console box window opened at startup.
2745 * License update: switch to the CeCILL 2.1.
2751 * New calling sequence allowed for nicholschart: nicholschart(gains, phases, colors).
2754 * qp_solve can now take up to 5 output arguments. The last one is an error flag,
2755 if it is present, then the function will display a warning instead of an error.
2758 * graypolarplot has been improved in terms of performances and rendering.
2761 * nthroot is now vectorizable.
2764 * New optional output argument for routh_t.
2768 Differential Equations
2769 ======================
2771 * Netlib's Quadpack, used for definite integration, has been updated to match the upstream.
2777 * Autosave feature can now use %date to append the current date to the backup filename
2784 * New DAE solver: DDaskr, using BDF methods with direct Newton and preconditioned Krylov
2785 linear solvers, which includes rootfinding.
2786 It is available from dae function.
2788 * In Modelica initialization GUI, inputs (eg. sensor) were not handled.
2790 * Sundials updated to the "2.5.0" version, keeping our modifications.
2792 * JGraphX updated to the "2.1.0.7" version, updating our hooks performance.
2794 * API changed in the scicos_block4 interface: the uid value is not available
2795 inside the simulation function.
2797 * xcosAddToolsMenu added to let the user perform some actions on the graph.
2799 * CBLOCK4 block added to the "User-Defined Functions"
2805 * Some Xcos specific content added to xcos_toolbox_skeleton help pages.
2811 * Minimal version of Flexdock (1.2.4) enforced.
2814 Obsolete & Removed Functions
2815 ============================
2817 * Scilab 5.5.X family will be the latest family working under Windows XP/2003.
2819 * Vector ^ scalar syntax declared as obsolete. See bug #11524
2821 * The third argument of poly function will be more strict.
2822 Only the following strings are allowed: "roots", "coeff", "c", "r".
2824 * Option and direction arguments of gsort will be more strict in all cases.
2825 Only the following strings are allowed:
2826 - option: "r" "c" "g" "lr" "lc"
2827 - direction : "d" "i"
2829 * nfreq tagged as obsolete. Will be removed in Scilab 5.5.1.
2830 Please use tabul instead.
2832 * IsAScalar tagged as obsolete. Will be removed in Scilab 5.5.1.
2833 Please use isscalar instead.
2835 * chart tagged as obsolete. Will be removed in Scilab 5.5.1.
2836 Please use nicholschart instead.
2838 * Second output argument of add_param tagged as obsolete. Will be removed in Scilab 5.5.1.
2840 * mvvacov tagged as obsolete. Will be removed in Scilab 6.0.0.
2841 Please use cov instead.
2843 * dft removed, please use fft instead.
2845 * sscanf removed, please use msscanf instead.
2847 * fscanf removed, please use mfscanf for files opened with mopen or read for files opened
2850 * fprintf removed, please use mfprintf for files opened with mopen or write for files
2851 opened with file instead.
2853 * mfft tagged as obsolete. Will be removed in Scilab 5.5.1.
2854 Please use fft instead.
2860 * paramfplot2d: When theta input argument was a column vector, an error occurred.
2862 * Bug #2267 fixed - Wrong error message when ticks locations and labels did not have the
2865 * Bug #2416 fixed - Particular case (string([]) returns []) has been added in string help
2868 * Bug #3511 fixed - strindex did not return all occurrences in regexp mode.
2870 * Bug #3928 fixed - An error was returned when a matrix was flipped along the third
2873 * Bug #4042 fixed - squeeze returned a hypermatrix instead of a matrix when at least one
2874 dimension was equal to 1.
2876 * Bug #4085 fixed - num2cell help page added.
2878 * Bug #4229 fixed - delip did not return an error if one element of its first input
2879 argument was negative.
2881 * Bug #4383 fixed - csim with "step" and "impuls" now works with direct feedthrough.
2883 * Bug #4481 fixed - iir help page updated to precise that frq can be a scalar.
2885 * Bug #4731 fixed - lqr failed when the time domain of an input was a number.
2887 * Bug #4743 fixed - Graphics with too big or too small values did not work.
2889 * Bug #5017 fixed - norm rewritten to take benefit from the Lapack package performance.
2891 * Bug #5073 fixed - New parameter added in strtod function (decimal separator).
2893 * Bug #5205 fixed - permute was slow for large hypermatrices.
2895 * Bug #5207 fixed - grand can now return a hypermatrix.
2897 * Bug #5365 fixed - makecell help page was in the "compatibility functions" directory
2898 instead of being in "data_structures".
2900 * Bug #5539 fixed - sylv help page was wrong in the discrete-time case.
2902 * Bug #5616 fixed - typeof(uiCreateTree(...)) returned "Tree" instead of "uitree".
2904 * Bug #5694 fixed - numdiff help page clarified.
2906 * Bug #5779 fixed - xnumb number format was too small (+ unit test added).
2908 * Bug #6037 fixed - macrovar help page improved.
2910 * Bug #6168 fixed - zpbutt, zpch1, zpch2 and zpell help pages were unclear.
2912 * Bug #6390 fixed - The "external" argument of odedc was not well documented and
2915 * Bug #6427 fixed - full([%T %F]) returned an error message.
2917 * Bug #6466 fixed - Example with vectorized input added in mprintf and msprintf help pages.
2919 * Bug #6584 fixed - mfft tagged as obsolete.
2921 * Bug #6638 fixed - The profiler output was incorrect by a factor of 1000 under Windows.
2923 * Bug #6693 fixed - modulo did not accept polynomial inputs. Help page was not updated.
2925 * Bug #6752 fixed - unit test scilab.tst has been split in different tests.
2927 * Bug #6840 fixed - New line_style added.
2929 * Bug #6988 fixed - Error messages in modules/data_structures/src/c/hmops.c were not
2932 * Bug #7026 fixed - There was no unit test for plot2d.
2934 * Bug #7080 fixed - Some graphic macros did not use standard error messages.
2936 * Bug #7204 fixed - geomean applied to a hypermatrix gave wrong results.
2938 * Bug #7206 fixed - If the second input argument of meanf function was a hypermatrix,
2939 this function returned an error.
2941 * Bug #7296 fixed - %nan, %inf and -%inf enabled for the cdf* functions.
2943 * Bug #7411 fixed - clf forgot to turn off the datatip mode.
2945 * Bug #7486 fixed - LAPACK versions of DGELSY and ZGELSY now used.
2947 * Bug #7596 fixed - A same error happening in different places now displays the same
2950 * Bug #7648 fixed - CDF functions now display a warning for non integer
2951 "degrees of freedom" argument.
2953 * Bug #7655 fixed - An example added in type help page, for type(X)=11 and type(X)=13.
2955 * Bug #7684 fixed - Introduction demonstration splitted into subsections.
2957 * Bug #7781 fixed - The second parameter of iqr function had no effect.
2959 * Bug #7782 fixed - lcm and gcd help pages improved to tell the user how to use both
2962 * Bug #7824 fixed - title function properties did not support an indexed color.
2964 * Bug #7826 fixed - chart tagged as obsolete.
2966 * Bug #7828 fixed - Slight improvements in nicholschart.
2968 * Bug #7848 fixed - The third argument of correl function is now optional.
2970 * Bug #7877 fixed - iirgroup function fixed.
2972 * Bug #7927 fixed - Output "flag" in qmr function was not well documented.
2974 * Bug #7960 fixed - plzr could not produce pole zero plot for a simple transfer function.
2976 * Bug #8058 fixed - The user can now set the tolerances of intc function.
2978 * Bug #8098 fixed - cumsum could not be applied to rational matrices.
2980 * Bug #8162 fixed - Area of stability of plzr was wrong for continuous systems
2983 * Bug #8211 fixed - Parameters module demonstration finalized.
2985 * Bug #8234 fixed - strtod did not return an empty matrix when the input argument was an
2988 * Bug #8264 fixed - Matlab to Scilab dictionary help page updated for atan2.
2990 * Bug #8319 fixed - dbphi(hypermat) and phasemag(hypermat) returned a matrix instead of
2993 * Bug #8373 fixed - clear can now handle a matrix of strings argument.
2995 * Bug #8415 fixed - optim_moga, optim_nsga, optim_nsga2 can now take list as input
2996 arguments, as explained in their help pages.
2998 * Bug #8462 fixed - bvodeS could make Scilab unstable.
3000 * Bug #8470 fixed - bvode displayed some output in terminal window and not in
3003 * Bug #8479 fixed - The latest Saxon version was not supported.
3005 * Bug #8511 fixed - sprand now uses grand instead of rand and grand functions. Internal
3006 state of the random generator is no more changed.
3008 * Bug #8561 fixed - ddassl, ddasrt, ddaskr: abs and rel tolerance sizes are now checked.
3010 * Bug #8597 fixed - grand/clcg4 could display uncontrolled messages as warning.
3012 * Bug #8607 fixed - Some error messages in modules/overloading/macros were not standard
3015 * Bug #8614 fixed - Unit test for barhomogenize added.
3017 * Bug #8636 fixed - roots help page updated (default algorithm value was wrong).
3019 * Bug #8667 fixed - The handling of %nan in min, max, median functions was not properly
3022 * Bug #8680 fixed - "end" output argument of regexp function has been changed.
3024 * Bug #8687 fixed - typeof function failed on uint8, depending on the format
3025 (+ unit test added).
3027 * Bug #8695 fixed - optim_ga used old (initial) values instead of newly-computed ones.
3029 * Bug #8778 fixed - Call_ScilabOpen, TerminateScilab could not be called more
3030 than 80 times in a loop.
3032 * Bug #8779 fixed - gsort did not preserve the order of equal elements, in
3035 * Bug #8820 fixed - squeeze did not return a matrix when the number of dimensions
3036 of the result was less or equal to 2.
3038 * Bug #8824 fixed - taucs_chfact returned a segfault (not the case in nwni mode).
3040 * Bug #8840 fixed - fileparts did not manage matrix of strings.
3042 * Bug #8856 fixed - Non regression test added for [k,l,m,...]=find(a==5).
3043 Non regression test of bug #476 updated.
3045 * Bug #8857 fixed - Non regression test of bug #477 updated.
3047 * Bug #8858 fixed - Non regression test of bug #480 updated.
3049 * Bug #8862 fixed - mget and mput could not read and write 64 bit data from
3052 * Bug #9004 fixed - bitcmp function called with one input argument returned an error.
3054 * Bug #9020 fixed - exists function did not accept matrix as first input argument.
3056 * Bug #9059 fixed - tbx_build_macros and genlib did not stop even if an error occurred.
3058 * Bug #9109 fixed - nfreq tagged as obsolete.
3060 * Bug #9158 fixed - zeros called with a big number returned an empty matrix instead
3063 * Bug #9208 fixed - Added three optional output arguments to optim,
3064 to retrieve #iterations, #evaluations and a termination indicator.
3066 * Bug #9385 fixed - The type checking in trigonometric functions has been added.
3068 * Bug #9394 fixed - is_param recognized "plist" as an existing field.
3070 * Bug #9395 fixed - add_param did not check its input arguments.
3072 * Bug #9396 fixed - add_param accepted duplicate keys.
3074 * Bug #9459 fixed - Default values of the optional plot3d arguments were not documented.
3076 * Bug #9537 fixed - optimbase_configure only allowed row vectors as initial value.
3077 Column vectors now allowed by transposing them.
3079 * Bug #9538 fixed - optimbase_checkshape only allowed row vectors as output arguments of
3080 cost function. Column vectors are now allowed by transposing them.
3082 * Bug #9577 fixed - Setting neldermead_configure("-numberofvariables") is now optional,
3083 setting neldermead_configure("-x0") initializes -numberofvariables
3086 * Bug #9601 fixed - Cylinder demonstration fixed.
3088 * Bug #9688 fixed - optim could crash when "imp" option was < 0. It is now set to 0 in
3091 * Bug #9690 fixed - The "imp" option for optim could crash Scilab and was not consistent
3094 * Bug #9691 fixed - "imp" option in optim help page was poorly documented.
3096 * Bug #9694 fixed - Example in optim help page fixed to display correct counters.
3098 * Bug #9702 fixed - Contrary to what optim help page stated, the "gc" algorithm does use
3099 the "epsx" parameter.
3101 * Bug #9780 fixed - gmres solver did not run with complex systems.
3103 * Bug #9788 fixed - neldermead can now produce a warning when it fails to converge,
3104 thanks to a new input argument "warn".
3106 * Bug #9821 fixed - getrelativefilename did not manage matrix of strings.
3108 * Bug #9851 fixed - Error message occurred because of a cut-off frequency of 0.25Hz
3111 * Bug #9859 fixed - It was not possible to draw arrows in 3-D using xarrows.
3113 * Bug #10146 fixed - In SciNotes, 'help on keyword' moved from bottom to top in the popup
3116 * Bug #10180 fixed - det was not defined for sparse matrices.
3118 * Bug #10213 fixed - sci2exp help page updated to document the impact of format function.
3120 * Bug #10216 fixed - Invalid syntaxes for zeros, ones, eye, rand, like zeros(2,:).
3122 * Bug #10226 fixed - When a // <empty session> line was deleted, all sessions
3123 histories were folded.
3125 * Bug #10254 fixed - Slight improvements in ones help page.
3127 * Bug #10269 fixed - qp_solve can now take up to 5 output arguments. The last one is an
3128 error flag, if it is present, then the function will issue a warning
3129 instead of an error.
3131 * Bug #10276 fixed - qp_solve segfaulted with large matrices.
3133 * Bug #10287 fixed - Error message added for complex expression as input argument of
3136 * Bug #10305 fixed - Comparison of lists with empty items returned an error message.
3138 * Bug #10596 fixed - exit(xxx) from Scilab failed.
3140 * Bug #10818 fixed - home, %e, %t, %f, %z and %s help pages added.
3142 * Bug #10823 fixed - fullpath returned different results under Windows and Linux for
3145 * Bug #10862 fixed - Add a without Internet connection installation
3146 global configuration in the installer.
3148 * Bug #10866 fixed - det was not equivalent to detr for rational matrices.
3150 * Bug #10906 fixed - Typo fixed in cls2dls help page.
3152 * Bug #10930 fixed - The comments in armax function were in French.
3154 * Bug #10995 fixed - Typo fixed in grand help page for Gamma law argument.
3156 * Bug #11065 fixed - The second output argument of unique function contained a wrong result.
3158 * Bug #11067 fixed - Display of ticks labels with closed associated values was wrong.
3160 * Bug #11139 fixed - conj was not defined for sparse matrices (+ unit test added).
3162 * Bug #11308 fixed - Calling sequences in dsearch help page were wrong.
3164 * Bug #11343 fixed - The "isoview" figure property did not work when the axes
3165 margins had been modified.
3167 * Bug #11648 fixed - Copying graphic via the clipboard did not work.
3169 * Bug #11766 fixed - nthroot has been added to m2sci help page.
3171 * Bug #11792 fixed - Lists can be accessed with non integer indexes (list help page
3174 * Bug #11869 fixed - "Environment" was not localized in preferences.
3176 * Bug #11885 fixed - Each rand has been changed to grand in genetic algorithms and
3177 simulated annealing functions.
3179 * Bug #11891 fixed - Fisher ratio could be inaccurate for one-way ANOVA.
3181 * Bug #11997 fixed - In case of invalid variable name, save function now returns an error
3182 instead of a compatibility warning.
3184 * Bug #12034 fixed - max function did not manage empty matrices.
3186 * Bug #12045 fixed - repmat returned wrong results if the values of an input matrix were
3189 * Bug #12070 fixed - Removing a module can now be done in an on-line mode even if
3190 it has been installed in an off-line mode.
3192 * Bug #12080 fixed - lsqrsolve always printed messages.
3194 * Bug #12085 fixed - Under Windows, csvWrite wrote wrong EOL.
3196 * Bug #12114 fixed - libstdc++ is now compiled as static instead of using the
3197 library from thirdparty.
3199 * Bug #12118 fixed - ode could take complex externals.
3201 * Bug #12143 fixed - "stop entity picker" (ged(11)) returned an error message.
3203 * Bug #12150 fixed - datatipCreate failed with one single point.
3205 * Bug #12163 fixed - unzoom did not work with a single input argument.
3207 * Bug #12212 fixed - Export of a polyline in 2-D broke it into several segments.
3209 * Bug #12326 fixed - There was no way to set LaTeX font size in preview.
3211 * Bug #12349 fixed - In SciNotes, when the view was splitted, removing a char made the
3214 * Bug #12376 fixed - Exec & edit buttons in the help pages examples were sometimes
3217 * Bug #12413 fixed - ATOMS packages could not be removed if ATOMS had never been on-line.
3219 * Bug #12415 fixed - PATH environment variable grew when using call_scilab in a loop.
3221 * Bug #12426 fixed - By using addErrorMessage, a random string error could be displayed.
3223 * Bug #12433 fixed - show_pixmap function was removed from Scilab but still used in some
3226 * Bug #12443 fixed - The behavior of mopen in text file mode has been documented
3229 * Bug #12463 fixed - Wrong specification for rect=[x,y,w,h] argument in xstringb
3232 * Bug #12470 fixed - Variable browser was not refreshed after loading an environment.
3234 * Bug #12473 fixed - Problems with "é" in mkdir French help page.
3236 * Bug #12475 fixed - csvRead did not support double quoted fields.
3238 * Bug #12490 fixed - plot did not call clf; in its help page example producing a
3241 * Bug #12506 fixed - In SciNotes, a miscolorization could occurred when returned values
3244 * Bug #12508 fixed - Wrong error message in rand function fixed.
3246 * Bug #12518 fixed - Polynoms were not displayed by default in the variable browser.
3248 * Bug #12520 fixed - Improve the description of the size in the variable browser.
3250 * Bug #12527 fixed - Scilab user functions were not listed in the variable browser.
3252 * Bug #12547 fixed - In SciNotes, lines were wrongly numbered with splitted function
3255 * Bug #12548 fixed - Duplicated code in xmltoformat removed.
3257 * Bug #12550 fixed - optimbase and optimsimplex help pages were not standard.
3259 * Bug #12551 fixed - Stack problem with diary([],"pause") and diary([],"resume") fixed.
3261 * Bug #12556 fixed - A fatal error occurred when calling set with wrong instructions.
3263 * Bug #12557 fixed - Valid function names were not specified in function and functions
3266 * Bug #12564 fixed - Compile and run javasci help page was not clear about needed packages.
3268 * Bug #12581 fixed - isfield could not support mlist or tlist.
3270 * Bug #12589 fixed - Call sequence for spzeros & spones were missing in French
3273 * Bug #12592 fixed - Scilab hung with plot(-0).
3275 * Bug #12593 fixed - A wrong error message was returned when running genlib with an
3276 error in the sci file.
3278 * Bug #12594 fixed - Invalid SciNotes configuration file avoided SciNotes startup.
3280 * Bug #12600 fixed - mput did not manage unsigned integer.
3282 * Bug #12606 fixed - Overloads for grand were not standard.
3284 * Bug #12613 fixed - gsort did not return correct results with %nan.
3286 * Bug #12614 fixed - Helpbrowser was not launched in EDT.
3288 * Bug #12615 fixed - Graphics seemed to be freezed after a call to plot/bar/barh with
3289 a bad LineSpec argument.
3291 * Bug #12624 fixed - In case of errors in Scilab macros, "make check-TESTS" did not fail
3294 * Bug #12627 fixed - At restoration, a window could be out of the screen.
3296 * Bug #12629 fixed - The last example of csim help page defined a function called
3297 input (overwriting the Scilab one).
3299 * Bug #12631 fixed - A "see also" link has been added from progressionbar to waitbar
3302 * Bug #12634 fixed - ATOMS modules could not be installed from an archive file
3303 already existing in SCI/contrib/archives in "offline" mode.
3305 * Bug #12637 fixed - In some help pages, some signal processing functions were not in
3306 the correct section.
3308 * Bug #12639 fixed - justify([], position) returned an error instead of [].
3310 * Bug #12641 fixed - graypolarplot has been fully vectorized as it was too slow.
3312 * Bug #12657 fixed - Computation of v1.^v2 is now done without any memory allocation,
3313 when v1 and v2 are real arrays, v1 >= 0 and v2 integer.
3315 * Bug #12668 fixed - Undocking SciNotes led to an exception.
3317 * Bug #12678 fixed - nthroot now accepts vector/matrix as second argument.
3319 * Bug #12679 fixed - Argument type check added in gcd and lcm.
3321 * Bug #12686 fixed - Error returned by diff fixed.
3323 * Bug #12702 fixed - When no extra parameters were needed in the cost function,
3324 NDcost did not work.
3326 * Bug #12703 fixed - In SciNotes, common shortcuts 'SHIFT DELETE', 'SHIFT INSERT'
3329 * Bug #12705 fixed - members function added. It allows to find the number of occurrences
3330 and linear indexes for common values between two matrices of the
3333 * Bug #12706 fixed - A wrong size of a matrix as input argument of cross function was
3336 * Bug #12708 fixed - Incorrect display in SciNotes preferences fixed (onmouseover styles).
3338 * Bug #12712 fixed - In SciNotes, autosaving can now use %date to append the current
3339 date to the backup filename.
3341 * Bug #12715 fixed - Variable cross in pspect and cspect has been renamed because of
3342 conflicts with cross function.
3344 * Bug #12736 fixed - In SciNotes, the Completion window appeared only in first tab.
3346 * Bug #12747 fixed - legendre now accepts the -1 and 1 values for third argument.
3348 * Bug #12749 fixed - fscanfMat help page updated.
3350 * Bug #12758 fixed - Focus issue with plot3d fixed.
3352 * Bug #12761 fixed - The https:// protocol was not supported on ATOMS.
3354 * Bug #12772 fixed - eigs failed when trying to solve a sparse matrix eigen value problem.
3356 * Bug #12774 fixed - Various typos fixed.
3358 * Bug #12775 fixed - Some related functions were not listed in "See also" section of
3361 * Bug #12778 fixed - Insertion of an empty matrix in an integer matrix led to a
3364 * Bug #12779 fixed - savewave had a miscoding in the internal function write_wavedat.
3366 * Bug #12783 fixed - There were some inconsistent error messages in dsearch.
3368 * Bug #12790 fixed - Links to ZCOS files in documentation were broken.
3370 * Bug #12791 fixed - More information is now given in case of failure during the ATOMS
3373 * Bug #12793 fixed - Improved the bode() plots with a new option "rad" to convert plot into rad/s
3374 and a new function bode_asymp() to draw the system asymptotes.
3376 * Bug #12794 fixed - calfrq.sci code did not follow Scilab standard.
3378 * Bug #12795 fixed - Typos fixed in CACSD help page.
3380 * Bug #12800 fixed - Typo fixed in Polynomials help page.
3382 * Bug #12804 fixed - Typos fixed in routh_t help page.
3384 * Bug #12807 fixed - Display of showprofile improved.
3386 * Bug #12808 fixed - Add missing </td> in documentation generation (note, warning, ...).
3388 * Bug #12813 fixed - flipdim function extended to any type of input data.
3390 * Bug #12814 fixed - Improvements of pertrans help page.
3392 * Bug #12815 fixed - levin redefined cov as a variable.
3394 * Bug #12816 fixed - Numbers pasted in editvar were not parsed according to locale.
3396 * Bug #12818 fixed - Segfault in set function with invalid property values dimension.
3398 * Bug #12823 fixed - In help generation (toolbox) links were not correctly handled.
3400 * Bug #12827 fixed - noisegen help page improved.
3402 * Bug #12828 fixed - routh_t gave a wrong result if the first element of a row was zero.
3404 * Bug #12829 fixed - New optional output argument added for routh_t function.
3406 * Bug #12830 fixed - In SciNotes, it was not possible to execute a replace action
3407 from the caret position.
3409 * Bug #12831 fixed - In SciNotes toolbar, there was no button to open code navigator.
3411 * Bug #12833 fixed - In SciNotes, there was no autoscroll when searching a pattern.
3413 * Bug #12836 fixed - Error fixed in strcmpi help page.
3415 * Bug #12839 fixed - Typo fixed in getVariablesOnStack help page.
3417 * Bug #12840 fixed - Typo fixed in number_properties.xml help page.
3419 * Bug #12852 fixed - Visual Studio 2012 SDK configuration was incorrect.
3421 * Bug #12858 fixed - Typo fixed in debug and pause French help pages.
3423 * Bug #12859 fixed - Fixed optional argument in isdef help page.
3425 * Bug #12863 fixed - size(state-space, "r") returned an error.
3427 * Bug #12875 fixed - phasemag returned an error for input vector containing zeros.
3429 * Bug #12887 fixed - Scilab hung with auto_clear set to on and log_flags set to true.
3431 * Bug #12888 fixed - sysdiag was not documented about block diagonal matrices build.
3433 * Bug #12906 fixed - champ and champ1 help pages updated
3435 * Bug #12909 fixed - Completion on (mt)list led to a crash.
3437 * Bug #12911 fixed - Matlab to Scilab dictionary help page updated for eig.
3439 * Bug #12913 fixed - linspace returned an error if the third argument was an integer type
3442 * Bug #12916 fixed - power help page improved.
3444 * Bug #12919 fixed - Rotation on plots was disabled after using menus.
3446 * Bug #12927 fixed - ones function could not take integer type input.
3448 * Bug #12931 fixed - ATOMS redefined "message" keyword.
3454 * Bug #7350 fixed - The I/O ports numbering of a superblock was not updated
3455 when a new port was dropped.
3457 * Bug #8570 fixed - "Region to superblock" has been renamed to
3458 "Selection to superblock".
3460 * Bug #11518 fixed - CLR block-text was displayed out of the bounding box
3463 * Bug #11776 fixed - CMSCOPE did not take into account label&Id parameter.
3465 * Bug #12359 fixed - Xcos files have been converted to ZCOS to gain some space.
3467 * Bug #12384 fixed - Using a Modelica part linked with an explicit link to
3468 another Modelica part led to an algebraic loop error.
3470 * Bug #12387 fixed - The "Modelica initialize" setup menu option did not blur
3473 * Bug #12414 fixed - SWITCH_m block had different behaviors
3474 for different types of inputs.
3476 * Bug #12424 fixed - Calling lincos on a derivative block made Scilab crash.
3478 * Bug #12449 fixed - QUANT_f was not rounding/truncating/flooring/ceiling properly input signal.
3480 * Bug #12460 fixed - xcosPalGenerateAllIcons sometimes crashed Scilab.
3482 * Bug #12461 fixed - Cancelling zoom out by zooming in did not fully work.
3484 * Bug #12561 fixed - SELECT_m and RELAY_f did not behave as expected.
3486 * Bug #12568 fixed - "Recent files" menu entry is now below the "Open" one.
3488 * Bug #12590 fixed - Block shape style was removed on file loading.
3490 * Bug #12603 fixed - ZCOS files could contain blocks with modified (eg. invalid)
3493 * Bug #12619 fixed - DLR discrete block did not display LaTeX formula
3494 like CLR continuous block.
3496 * Bug #12651 fixed - The 'nw' scicos_simulate option did not work while
3497 passing a previous Info simulation status.
3499 * Bug #12664 fixed - Inverted pendulum French localization in the Xcos demonstrations was
3502 * Bug #12667 fixed - 'Recent Files' menu was not localized.
3504 * Bug #12731 fixed - Code generation produced erroneous block.
3506 * Bug #12732 fixed - Improper Copyright comments in the files were generated by the code
3509 * Bug #12796 fixed - There was some mismatches between implicit
3510 and explicit ports of superblocks.
3512 * Bug #12797 fixed - I/O blocks generated by "Selection to Superblocks" had
3515 * Bug #12868 fixed - There were several problems with PULSE_SC block.
3517 * Bug #12869 fixed - min and max were not defined but used in Xcos generated code.
3519 * Bug #12873 fixed - scicos_flat produced an unexpected error after a diagram
3522 * Bug #12874 fixed - CSCOPE marks sizes were too small.
3524 * Bug #12877 fixed - Incorrect output port dimensions and types in GENSIN_f, GENSQR_f,
3525 STEP_FUNCTION and STEP blocks fixed.
3527 * Bug #12924 fixed - Blocks type 2004 was not handled as a valid block type.
3529 * Bug #12934 fixed - Separate compilation of a superblock could fail due to under
3530 determined signal sizes.