annotate etc/NEWS.10.md @ 33536:a7248dd08efa

NEWS.10.md: Populate bugs fixed for 10.1.0
author Arun Giridhar <arungiridhar@gmail.com>
date Mon, 06 May 2024 10:46:26 -0400
parents 9bfc3c313ec4
children 62fca924fe85
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
1 Summary of important user-visible changes for version 10 (yyyy-mm-dd):
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
2 ---------------------------------------------------------------------
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
3
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
4 ### General improvements
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
5
32669
b18af44b044b Add new short form aliases of runtime long form options to octave.
Rik <rik@octave.org>
parents: 32660
diff changeset
6 - Three short form aliases have been added for long form options when starting
b18af44b044b Add new short form aliases of runtime long form options to octave.
Rik <rik@octave.org>
parents: 32660
diff changeset
7 `octave`.
b18af44b044b Add new short form aliases of runtime long form options to octave.
Rik <rik@octave.org>
parents: 32660
diff changeset
8 * `-e CODE` for `--eval CODE`
b18af44b044b Add new short form aliases of runtime long form options to octave.
Rik <rik@octave.org>
parents: 32660
diff changeset
9 * `-g` for `--gui`
b18af44b044b Add new short form aliases of runtime long form options to octave.
Rik <rik@octave.org>
parents: 32660
diff changeset
10 * `-G` for `--no-gui`
b18af44b044b Add new short form aliases of runtime long form options to octave.
Rik <rik@octave.org>
parents: 32660
diff changeset
11
32678
49d6ecd07a76 Rename command-line options for handling configuration files.
Rik <rik@octave.org>
parents: 32677
diff changeset
12 - Three long form options have been introduced for clarity.
49d6ecd07a76 Rename command-line options for handling configuration files.
Rik <rik@octave.org>
parents: 32677
diff changeset
13 * `--no-init-user` : Don't read user configuration files ~/.octaverc or
49d6ecd07a76 Rename command-line options for handling configuration files.
Rik <rik@octave.org>
parents: 32677
diff changeset
14 .octaverc files at startup.
49d6ecd07a76 Rename command-line options for handling configuration files.
Rik <rik@octave.org>
parents: 32677
diff changeset
15 * `--no-init-site` : Don't read site-wide configuration files at startup.
49d6ecd07a76 Rename command-line options for handling configuration files.
Rik <rik@octave.org>
parents: 32677
diff changeset
16 * `--no-init-all` : Don't read any configuration files at startup.
49d6ecd07a76 Rename command-line options for handling configuration files.
Rik <rik@octave.org>
parents: 32677
diff changeset
17
33170
82ae00b40c2c maint: strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 33160
diff changeset
18 - `nchoosek` algorithm is now ~2x faster and provides greater precision.
32926
39b341c858a7 nchoosek: Improve input validation and code clarity (bug #65238)
Rik <rik@octave.org>
parents: 32726
diff changeset
19
33199
297fd823a953 nextpow2.m: Overhaul function for improved accuracy and Matlab compatibility (bug #65441)
Rik <rik@octave.org>
parents: 33170
diff changeset
20 - `nextpow2` algorithm is now more accurate for inputs very close to a power
297fd823a953 nextpow2.m: Overhaul function for improved accuracy and Matlab compatibility (bug #65441)
Rik <rik@octave.org>
parents: 33170
diff changeset
21 of 2. The output class now matches the input class for Matlab compatibility.
297fd823a953 nextpow2.m: Overhaul function for improved accuracy and Matlab compatibility (bug #65441)
Rik <rik@octave.org>
parents: 33170
diff changeset
22 The function no longer accepts complex inputs and will emit an error for these
297fd823a953 nextpow2.m: Overhaul function for improved accuracy and Matlab compatibility (bug #65441)
Rik <rik@octave.org>
parents: 33170
diff changeset
23 inputs.
297fd823a953 nextpow2.m: Overhaul function for improved accuracy and Matlab compatibility (bug #65441)
Rik <rik@octave.org>
parents: 33170
diff changeset
24
33200
9f97974976cd Allow integer inputs greater than 999999 to jsonencode (bug #65447)
Rik <rik@octave.org>
parents: 33199
diff changeset
25 - `jsonencode` now outputs integers and floating point integers without ".0"
33463
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
26 suffix.
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
27
33222
67480f3843c7 hist.m: allow processing of n-D array inputs (bug #65478)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33200
diff changeset
28 - `hist` now accepts N-dimensional array inputs for input `Y` which is
33463
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
29 processed in columns as if the array was flattened to a 2-dimensional array.
33200
9f97974976cd Allow integer inputs greater than 999999 to jsonencode (bug #65447)
Rik <rik@octave.org>
parents: 33199
diff changeset
30
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
31 ### Graphical User Interface
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
32
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
33 ### Graphics backend
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
34
32587
a6b7c5620240 polar.m: Populate rtick with center value on plot creation (bug #64991)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32583
diff changeset
35 - `polar` plots now include the center tick mark value, typically 0, in
33463
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
36 the `'rtick'` parameter when the plot is created. Subsequent modifications
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
37 to `'rtick'` by the function `rticks` will only include the center tick mark
32595
2cf4c5bfc410 polar.m: Tweaks to cset a6b7c5620240 (bug #64991)
Rik <rik@octave.org>
parents: 32587
diff changeset
38 value if it is specified.
32587
a6b7c5620240 polar.m: Populate rtick with center value on plot creation (bug #64991)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32583
diff changeset
39
33463
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
40 - `view` correctly interprets cartesian viewpoints on main axes (bug #65641).
33461
2f5a875246ae view.m: Move input validation to avoid creating figure on error (bug #65641)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33453
diff changeset
41
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
42 ### Matlab compatibility
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
43
32583
c273d7fdab3a doc: Add height and width info to rows and columns docstrings (bug #64995)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32505
diff changeset
44 - `height` and `width` are now aliases for the `rows` and `columns` functions.
c273d7fdab3a doc: Add height and width info to rows and columns docstrings (bug #64995)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32505
diff changeset
45
32647
dfb9b770ae77 Increase default colormap size to 256 colors, add colormap BISTs (bug #65010)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32625
diff changeset
46 - All colormaps now default to a size of 256 colors. (The previous default
33463
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
47 size was 64.)
32647
dfb9b770ae77 Increase default colormap size to 256 colors, add colormap BISTs (bug #65010)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32625
diff changeset
48
32726
d970ec60aa64 griddata: Match output size to vector interpolation points. (bug #65134)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32678
diff changeset
49 - `griddata` output size more consistently matches the input interpolation
d970ec60aa64 griddata: Match output size to vector interpolation points. (bug #65134)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32678
diff changeset
50 points when they are input as vectors. When they are same-orientation vectors,
d970ec60aa64 griddata: Match output size to vector interpolation points. (bug #65134)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32678
diff changeset
51 the outputs will be the same size as those vectors. When either is a row
d970ec60aa64 griddata: Match output size to vector interpolation points. (bug #65134)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32678
diff changeset
52 vector and the other is a column vector, the interpolating points are processed
d970ec60aa64 griddata: Match output size to vector interpolation points. (bug #65134)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32678
diff changeset
53 through meshgrid and the output is a matrix the same size as the meshgrid.
d970ec60aa64 griddata: Match output size to vector interpolation points. (bug #65134)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32678
diff changeset
54
33088
49dec190c4da unqiue.m: Implement third output when 'stable' sort is used. (bug #65176)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32926
diff changeset
55 - Enable the third output for `unique` with the `stable` sort option.
49dec190c4da unqiue.m: Implement third output when 'stable' sort is used. (bug #65176)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32926
diff changeset
56
33267
95c195edc257 iqr: Produce compatible output for empty x inputs (bug #65531)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33222
diff changeset
57 - `iqr` now provides compatible output for empty inputs.
95c195edc257 iqr: Produce compatible output for empty x inputs (bug #65531)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33222
diff changeset
58
33287
1db14e08bee4 cross: Change mixed vector orientation input to row vector output (bug #61295)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33267
diff changeset
59 - `cross` now produces row vector outputs when the inputs are a mix of row
33463
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
60 and column vectors (bug #61295).
33287
1db14e08bee4 cross: Change mixed vector orientation input to row vector output (bug #61295)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33267
diff changeset
61
33453
2a0cdc52220b rat.m: Accept complex inputs (bug #55198)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33365
diff changeset
62 - `rat` now accepts complex inputs.
2a0cdc52220b rat.m: Accept complex inputs (bug #55198)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33365
diff changeset
63
33534
9bfc3c313ec4 NEWS.10.md: Mention input validation change in system() (bug #65665)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33463
diff changeset
64 - The optional second input argument of `system`, denoting whether to return
9bfc3c313ec4 NEWS.10.md: Mention input validation change in system() (bug #65665)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33463
diff changeset
65 the output as a variable, is now required to be a boolean value if used.
9bfc3c313ec4 NEWS.10.md: Mention input validation change in system() (bug #65665)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33463
diff changeset
66
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33326
diff changeset
67 - Octave functions whose Matlab equivalents give errors when passed non-integer
33534
9bfc3c313ec4 NEWS.10.md: Mention input validation change in system() (bug #65665)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33463
diff changeset
68 values as sizes or dimensions now also give similar errors. For example,
9bfc3c313ec4 NEWS.10.md: Mention input validation change in system() (bug #65665)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33463
diff changeset
69 `cell (e, pi)` now gives an error in Octave about requiring integer sizes
9bfc3c313ec4 NEWS.10.md: Mention input validation change in system() (bug #65665)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33463
diff changeset
70 for the cell array, matching Matlab behavior. Previously, Octave's conversion
9bfc3c313ec4 NEWS.10.md: Mention input validation change in system() (bug #65665)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33463
diff changeset
71 from non-integers to integers was more lenient.
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33326
diff changeset
72
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
73 ### Alphabetical list of new functions added in Octave 10
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
74
33129
92b8822976fe clim.m: New function identical to caxis, but more clearly named.
Rik <rik@octave.org>
parents: 33088
diff changeset
75 * `clim`
32602
65084aa09317 rticklabels.m, tticklabels.m: Add new functions. (patch #10408)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32595
diff changeset
76 * `rticklabels`
65084aa09317 rticklabels.m, tticklabels.m: Add new functions. (patch #10408)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32595
diff changeset
77 * `tticklabels`
65084aa09317 rticklabels.m, tticklabels.m: Add new functions. (patch #10408)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 32595
diff changeset
78
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
79 ### Deprecated functions, properties, and operators
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
80
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
81 The following functions and properties have been deprecated in Octave 10
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
82 and will be removed from Octave 12 (or whatever version is the second
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
83 major release after 10):
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
84
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
85 - Functions
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
86
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
87 Function | Replacement
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
88 -----------------------|------------------
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
89
32625
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
90 - Core
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
91
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
92 Function | Replacement
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
93 --------------------------------------|------------------
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
94 symbol_record_rep::mark_as_variable | symbol_record_rep::mark_variable
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
95 symbol_record_rep::unmark_as_variable | symbol_record_rep::unmark_variable
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
96 symbol_record::mark_as_variable | symbol_record::mark_variable
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
97 symbol_record::unmark_as_variable | symbol_record::unmark_variable
32677
03dcf031fbf3 Deprecate '--verbose' option in favor of '--init-trace'.
Rik <rik@octave.org>
parents: 32669
diff changeset
98 interpreter::verbose | interpreter::init_trace
03dcf031fbf3 Deprecate '--verbose' option in favor of '--init-trace'.
Rik <rik@octave.org>
parents: 32669
diff changeset
99 cmdline_options::verbose | cmdline_options::init_trace
32625
b60af3354ac3 maint: Deprecate mark_as_variable, unmark_as_variable methods for code clarity.
Rik <rik@octave.org>
parents: 32602
diff changeset
100
32677
03dcf031fbf3 Deprecate '--verbose' option in favor of '--init-trace'.
Rik <rik@octave.org>
parents: 32669
diff changeset
101 - A new method `rwdata ()` provides direct read/write access (a pointer) to the
32660
f53ac65ffba6 maint: New method rwdata() as clearer alternative to fortran_vec().
Rik <rik@octave.org>
parents: 32647
diff changeset
102 data in a liboctave `Array` object (or its derived classes such as `Matrix`).
f53ac65ffba6 maint: New method rwdata() as clearer alternative to fortran_vec().
Rik <rik@octave.org>
parents: 32647
diff changeset
103 Historically, the method `fortran_vec ()` provided this access, but the name
f53ac65ffba6 maint: New method rwdata() as clearer alternative to fortran_vec().
Rik <rik@octave.org>
parents: 32647
diff changeset
104 is unclear, and it is recommended to use `rwdata ()` in any new code. There
f53ac65ffba6 maint: New method rwdata() as clearer alternative to fortran_vec().
Rik <rik@octave.org>
parents: 32647
diff changeset
105 are no plans to deprecate `fortran_vec`.
f53ac65ffba6 maint: New method rwdata() as clearer alternative to fortran_vec().
Rik <rik@octave.org>
parents: 32647
diff changeset
106
32677
03dcf031fbf3 Deprecate '--verbose' option in favor of '--init-trace'.
Rik <rik@octave.org>
parents: 32669
diff changeset
107 - The `--verbose`,`-V` command-line option has been deprecated. Use
03dcf031fbf3 Deprecate '--verbose' option in favor of '--init-trace'.
Rik <rik@octave.org>
parents: 32669
diff changeset
108 `--init-trace` to print the configuration files executed during initialization.
03dcf031fbf3 Deprecate '--verbose' option in favor of '--init-trace'.
Rik <rik@octave.org>
parents: 32669
diff changeset
109
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
110 The following features were deprecated in Octave 8 and have been removed
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
111 from Octave 10.
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
112
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
113 - Functions
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
114
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
115 Function | Replacement
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
116 -----------------------|------------------
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
117 shift | circshift
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
118 sparse_auto_mutate | none (see below)
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
119
33326
3f3d7dde7f61 fminsearch: Remove direct parameter passing capability. (bug #55742)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33287
diff changeset
120 - `fminsearch` parameter passing: A legacy, undocumented, and only partially
33463
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
121 supported syntax for passing parameters to the minimized function `fcn` called
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
122 by `fminsearch` by appending them to the input argument list was partly
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
123 implemented since Octave 4.4.0. Due to conflicts with other input methods,
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
124 the documentation of this syntax was removed in Octave 5.1.0. The remaining
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
125 functionality has been completely removed in Octave 10. Attempts to call
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
126 `fminsearch` with that syntax will result in an error. The preferred method of
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
127 passing parameters to any of the minimization functions (including
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
128 `fminsearch`, `fminbnd`, and `fminunc`) is through the use of anonymous
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
129 functions. Specific examples of this can be found in the "Minimizers" section
7594fda4aab4 NEWS.10.md: Minor changes.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33461
diff changeset
130 of the Octave manual.
33326
3f3d7dde7f61 fminsearch: Remove direct parameter passing capability. (bug #55742)
Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
parents: 33287
diff changeset
131
33160
4584cb4207f1 build: Require a C++ compiler that is compliant with C++17.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33129
diff changeset
132 ### Build system
4584cb4207f1 build: Require a C++ compiler that is compliant with C++17.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33129
diff changeset
133
4584cb4207f1 build: Require a C++ compiler that is compliant with C++17.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33129
diff changeset
134 - Octave now requires a C++ compiler that is compliant with C++17 (preferably
4584cb4207f1 build: Require a C++ compiler that is compliant with C++17.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33129
diff changeset
135 with GNU extensions).
4584cb4207f1 build: Require a C++ compiler that is compliant with C++17.
Markus Mützel <markus.muetzel@gmx.de>
parents: 33129
diff changeset
136
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
137
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
138 Summary of bugs fixed for version 10.1.0 (yyyy-mm-dd):
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
139 ----------------------------------------------------
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
140
33536
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
141 - Improve nchoosek.m algorithm to prevent numerical issues (bug #65238)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
142 - nchoosek error "gcd: all values must be integers" (bug #65495)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
143 - nextpow2 incorrect for some inputs slightly larger than powers of two (bug #65441)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
144 - jsonencode does not accept integer values larger than 999999 (bug #65447)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
145 - hist produces nonconformtant arguments error when input has ndims > 2 (bug #65478)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
146 - compatibility: colormaps now default to 256 colors in matlab (bug #65010)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
147 - implement height and width as aliases for rows and columns for matlab compatibility (bug #64995)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
148 - 'view' produces incorrect viewpoint when given a vector aligned with the primary axes (bug #65641)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
149 - polar doesn't populate rtick with center tick value (bug #64991)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
150 - iqr handling of empty inputs is not compatible (bug #65531)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
151 - griddata: output size inconsistent for vector input interpolation points (bug #65134)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
152 - unique.m - Enable third output with option 'stable' (bug #65176)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
153 - Input validation for system() (bug #65665)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
154 - rat() should support complex numbers (bug #55198)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
155 - cross() dimensions inconsistent with Matlab when using mismatched input vector dimensions (bug #61295)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
156 - xint_value does not work the way it is intended (bug #65538)
a7248dd08efa NEWS.10.md: Populate bugs fixed for 10.1.0
Arun Giridhar <arungiridhar@gmail.com>
parents: 33534
diff changeset
157
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
158 ### Old release news
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
159
32505
fe131ab1011a NEWS: Update links to previous NEWS files.
Markus Mützel <markus.muetzel@gmx.de>
parents: 32483
diff changeset
160 - [Octave 9.x](etc/NEWS.9.md)
fe131ab1011a NEWS: Update links to previous NEWS files.
Markus Mützel <markus.muetzel@gmx.de>
parents: 32483
diff changeset
161 - [Octave 8.x](etc/NEWS.8.md)
fe131ab1011a NEWS: Update links to previous NEWS files.
Markus Mützel <markus.muetzel@gmx.de>
parents: 32483
diff changeset
162 - [Octave 7.x](etc/NEWS.7.md)
fe131ab1011a NEWS: Update links to previous NEWS files.
Markus Mützel <markus.muetzel@gmx.de>
parents: 32483
diff changeset
163 - [Octave 6.x](etc/NEWS.6.md)
fe131ab1011a NEWS: Update links to previous NEWS files.
Markus Mützel <markus.muetzel@gmx.de>
parents: 32483
diff changeset
164 - [Octave 5.x](etc/NEWS.5.md)
32483
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
165 - [Octave 4.x](etc/NEWS.4)
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
166 - [Octave 3.x](etc/NEWS.3)
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
167 - [Octave 2.x](etc/NEWS.2)
48023451eea9 NEWS: Update for version 10 development.
Rik <rik@octave.org>
parents:
diff changeset
168 - [Octave 1.x](etc/NEWS.1)