]> Creatis software - CreaPhase.git/blob - octave_packages/general-1.3.1/packinfo/NEWS
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / general-1.3.1 / packinfo / NEWS
1 Summary of important user-visible changes for general 1.3.1:
2 -------------------------------------------------------------------
3
4  ** general 1.3.1 is a bug fix release
5
6  ** The `addSwitch' method from inputParser class has been fixed
7
8  ** For Matlab compatibility, optional arguments of the inputParser class
9     will be skipped and followed by ParamValue and Switch arguments if they
10     are a string that does not validate. Note that unlike Matlab, if no
11     validator is given, anything is valid, so giving no validator to an
12     Optional argument will not turn any string on the list of arguments
13     to be considered a ParamValue key.
14
15 Summary of important user-visible changes for general 1.3.0:
16 -------------------------------------------------------------------
17
18  ** The following functions are new:
19       majle
20
21  ** The class `inputParser' class has been implemented with many methods. It
22     attempts to be as compatible with Matlab as possible. However, since
23     classdef is not yet implemented the syntax differs slightly. Unlike the
24     Matlab implementation, this functions return the object. For example:
25
26         obj.method (arguments)        # matlab implementation
27         obj = obj.method (arguments)  # octave implementation
28
29     The octave implementatino expands on the Matlab one as it has one more type
30     of API, see `help @inputParser/addSwitch'.
31
32  ** The function `unvech' accepts a new argument scale to calculate
33     the upper triangular part of the matrix thus returning non-symmetric
34     matrix.
35
36  ** The function `parcellfun' had the random number generator modifed,
37     a new option to set the verbosity level, and other bugs corrected.
38
39  ** Package is no longer automatically loaded.