Mercurial > hg > octave-lyh
annotate NEWS @ 10776:062304bd692e
Update NEWS with description of new engineering format for numbers.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 08 Jul 2010 09:11:32 -0700 |
parents | cfb13443434f |
children | 61cb53ae9db3 |
rev | line source |
---|---|
9352 | 1 Summary of important user-visible changes for version 3.3: |
2 --------------------------------------------------------- | |
3 | |
10522
6538ff562949
document keypress and mouse callback properties
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10453
diff
changeset
|
4 ** The fltk graphics backend now implements the following callback |
6538ff562949
document keypress and mouse callback properties
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10453
diff
changeset
|
5 properties: keypressfcn, keyreleasefcn, windowbuttondownfcn, |
6538ff562949
document keypress and mouse callback properties
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10453
diff
changeset
|
6 windowbuttonmotionfcn, windowbuttonupfcn, and currentpoint. These |
6538ff562949
document keypress and mouse callback properties
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10453
diff
changeset
|
7 enable keyboard and mouse interaction, an example of which can be |
6538ff562949
document keypress and mouse callback properties
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10453
diff
changeset
|
8 seen in the __fltk_ginput__.m script. |
6538ff562949
document keypress and mouse callback properties
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10453
diff
changeset
|
9 |
9799
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9745
diff
changeset
|
10 ** BLAS and LAPACK libraries are now required to build Octave. The |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9745
diff
changeset
|
11 subset of the reference BLAS and LAPACK libraries has been removed |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9745
diff
changeset
|
12 from the Octave sources. |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9745
diff
changeset
|
13 |
10118 | 14 ** The `lookup' function was extended to be more useful for |
15 general-purpose binary searching. Using this improvement, the | |
16 ismember function was rewritten for significantly better | |
17 performance. | |
9352 | 18 |
19 ** Real, integer and logical matrices, when used in indexing, will now | |
20 cache the internal index_vector value (zero-based indices) when | |
21 successfully used as indices, eliminating the conversion penalty for | |
10118 | 22 subsequent indexing by the same matrix. In particular, this means it |
23 is no longer needed to avoid repeated indexing by logical arrays | |
24 using find for performance reasons. | |
9888 | 25 |
10118 | 26 ** Logical matrices are now treated more efficiently when used as |
27 indices. Octave will keep the index as a logical mask unless the | |
28 ratio of true elements is small enough, using a specialized | |
29 code. Previously, all logical matrices were always first converted | |
30 to index vectors. This results in savings in both memory and | |
31 computing time. | |
9480 | 32 |
10118 | 33 ** The `sub2ind' and `ind2sub' functions were reimplemented as compiled |
34 functions for better performance. These functions are now faster, | |
35 can deliver more economized results for ranges, and can reuse the | |
36 index cache mechanism described in previous paragraph. | |
37 | |
38 ** The built-in function equivalents to associative operators (`plus', | |
39 `times', `mtimes', `and', and `or') have been extended to accept | |
40 multiple arguments. This is especially useful for summing | |
41 (multiplying, etc.) lists of objects (of possibly distinct types): | |
9408 | 42 |
9449 | 43 matrix_sum = plus (matrix_list{:}); |
44 | |
10118 | 45 ** An FTP object type based on libcurl has been implemented. These |
46 objects allow ftp connections, downloads and uploads to be | |
47 managed. For example, | |
9880 | 48 |
10118 | 49 fp = ftp ("ftp.octave.org); |
50 cd (fp, "gnu/octave"); | |
51 mget (fp, "octave-3.2.3.tar.bz2"); | |
52 close (fp); | |
9880 | 53 |
10118 | 54 ** The default behavior of `assert (observed, expected)' has been |
55 relaxed to employ less strict checking that does not require the | |
56 internals of the values to match. This avoids previously valid | |
57 tests from breaking due to new internal classes introduced in future | |
58 Octave versions. | |
9449 | 59 |
60 For instance, all of these assertions were true in Octave 3.0.x | |
61 but false in 3.2.x due to new optimizations and improvements: | |
62 | |
63 assert (2*linspace (1, 5, 5), 2*(1:5)) | |
64 assert (zeros (0, 0), []) | |
65 assert (2*ones (1, 5), (2) (ones (1,5))) | |
9462 | 66 |
10118 | 67 ** The behavior of library functions `ismatrix', `issquare', and |
68 `issymmetric' has been changed for better consistency. | |
9873 | 69 |
10292 | 70 * The `ismatrix' function now returns true for all numeric, |
71 logical and character 2d or Nd matrices. Previously, `ismatrix' | |
72 returned false if the first or second dimension was zero. | |
73 Hence, `ismatrix ([])' was false, | |
74 while `ismatrix (zeros (1,2,0))' was true. | |
9873 | 75 |
10118 | 76 * The `issquare' function now returns a logical scalar, and is |
77 equivalent to the expression | |
78 | |
79 ismatrix (x) && ndims (x) == 2 && rows (x) == columns (x) | |
80 | |
81 The dimension is no longer returned. As a result, `issquare ([])' | |
82 now yields true. | |
9873 | 83 |
10118 | 84 * The `issymmetric' function now checks for symmetry instead of |
85 hermitianness. For the latter, ishermitian was created. Also, | |
86 logical scalar is returned rather than the dimension, so | |
87 `issymmetric ([])' is now true. | |
9873 | 88 |
10118 | 89 ** Function handles are now aware of overloaded functions. If a |
90 function is overloaded, the handle determines at the time of its | |
91 reference which function to call. A non-overloaded version does not | |
92 need to exist. | |
9873 | 93 |
10118 | 94 ** Overloading functions for built-in classes (double, int8, cell, |
95 etc.) is now compatible with Matlab. | |
9408 | 96 |
10323 | 97 ** Function handles can now be compared with the == and != operators, |
98 as well as the `isequal' function. | |
99 | |
10118 | 100 ** Performance of concatenation (using []) and the functions `cat', |
101 `horzcat', and `vertcat' has been improved for multidimensional | |
102 arrays. | |
10117 | 103 |
9547 | 104 ** The operation-assignment operators +=, -=, *= and /= now behave more |
10118 | 105 efficiently in certain cases. For instance, if M is a matrix and S a |
106 scalar, then the statement | |
9547 | 107 |
10118 | 108 M += S; |
9547 | 109 |
10118 | 110 will operate on M's data in-place if it is not shared by another |
111 variable, usually increasing both time and memory efficiency. | |
9547 | 112 |
9558 | 113 Only selected common combinations are affected, namely: |
9547 | 114 |
115 matrix += matrix | |
116 matrix -= matrix | |
9558 | 117 matrix .*= matrix |
118 matrix ./= matrix | |
119 | |
9547 | 120 matrix += scalar |
121 matrix -= scalar | |
122 matrix *= scalar | |
123 matrix /= scalar | |
9558 | 124 |
9552 | 125 logical matrix |= logical matrix |
126 logical matrix &= logical matrix | |
9547 | 127 |
10118 | 128 where matrix and scalar belong to the same class. The left-hand |
129 side must be a simple variable reference. | |
9888 | 130 |
10118 | 131 Moreover, when unary operators occur in expressions, Octave will |
132 also try to do the operation in-place if it's argument is a | |
133 temporary expresssion. | |
9589 | 134 |
10118 | 135 ** The effect of comparison operators (<, >, <=, and >=) applied to |
136 complex numbers has changed to be consistent with the strict | |
137 ordering defined by the `max', `min', and `sort' functions. More | |
138 specifically, complex numbers are compared by lexicographical | |
139 comparison of the pairs `[abs(z), arg(z)]'. Previously, only real | |
140 parts were compared; this can be trivially achieved by wrapping the | |
141 operands in real(). | |
9547 | 142 |
10118 | 143 ** The automatic simplification of complex computation results has |
144 changed. Octave will now simplify any complex number with a zero | |
145 imaginary part or any complex matrix with all elements having zero | |
146 imaginary part to a real value. Previously, this was done only for | |
147 positive zeros. Note that the behavior of the complex function is | |
148 unchanged and it still produces a complex value even if the | |
149 imaginary part is zero. | |
9826 | 150 |
10118 | 151 ** As a side effect of code refactoring in liboctave, the binary |
152 logical operations are now more easily amenable to compiler | |
153 optimizations and are thus significantly faster. | |
9595 | 154 |
10118 | 155 ** Octave now allows user-defined `subsasgn' methods to optimize out |
156 redundant copies. For more information, see the manual. | |
9595 | 157 |
10453 | 158 ** More efficient matrix division handling. Octave is now able to |
10118 | 159 handle the expressions |
9664 | 160 |
10118 | 161 M' \ V |
162 M.' \ V | |
163 V / M | |
9664 | 164 |
10118 | 165 (M is a matrix and V is a vector) more efficiently in certain cases. |
166 In particular, if M is triangular, all three expressions will be | |
167 handled by a single call to xTRTRS (from LAPACK), with appropriate | |
10453 | 168 flags. Previously, all three expressions required a physical |
10118 | 169 transpose of M. |
9664 | 170 |
10118 | 171 ** More efficient handling of certain mixed real-complex matrix |
172 operations. For instance, if RM is a real matrix and CM a complex | |
173 matrix, | |
9664 | 174 |
10118 | 175 RM * CM |
9664 | 176 |
177 can now be evaluated either as | |
178 | |
179 complex (RM * real (CM), RM * imag (CM)) | |
180 | |
181 or as | |
182 | |
183 complex (RM) * CM, | |
184 | |
10453 | 185 depending on the dimensions. The first form requires more |
186 temporaries and copying, but halves the FLOP count, which normally | |
187 brings better performance if RM has enough rows. Previously, the | |
188 second form was always used. | |
9664 | 189 |
190 Matrix division is similarly affected. | |
191 | |
10118 | 192 ** More efficient handling of triangular matrix factors returned from |
193 factorizations. The functions for computing QR, LU and Cholesky | |
194 factorizations will now automatically return the triangular matrix | |
195 factors with proper internal matrix_type set, so that it won't need | |
196 to be computed when the matrix is used for division. | |
9717 | 197 |
10118 | 198 ** The built-in `sum' function now handles the non-native summation |
199 (i.e., double precision sum of single or integer inputs) more | |
200 efficiently, avoiding a temporary conversion of the whole input | |
201 array to doubles. Further, `sum' can now accept an extra option | |
202 argument, using a compensated summation algorithm rather than a | |
203 straightforward sum, which significantly improves precision if lots | |
204 of cancellation occurs in the summation. | |
9717 | 205 |
10118 | 206 ** The built-in `bsxfun' function now uses optimized code for certain |
207 cases where built-in operator handles are passed in. Namely, the | |
208 optimizations concern the operators `plus', `minus', `times', | |
209 `ldivide', `rdivide', `power', `and', `or' (for logical arrays), | |
210 the relational operators `eq', `ne', `lt', `le', `gt', `ge', and the | |
211 functions `min' and `max'. Optimizations only apply when both | |
212 operands are of the same built-in class. Mixed real/complex and | |
213 single/double operations will first convert both operands to a | |
214 common type. | |
9745 | 215 |
10118 | 216 ** The `strfind' and `strrep' functions now have compiled |
217 implementations, facilitating significantly more efficient searching | |
218 and replacing in strings, especially with longer patterns. The code | |
219 of `strcat' has been vectorized and is now much more efficient when | |
220 many strings are concatenated. The `strcmpi' and `strncmpi' | |
221 functions are now built-in functions, providing better performance. | |
10208 | 222 |
10453 | 223 ** Matlab-style ignoring input and output function arguments using |
224 tilde (~) is now supported. For more details, consult the manual. | |
10233 | 225 |
10453 | 226 ** The list datatype, deprecated since the introduction of cells, has |
227 been removed. | |
10276 | 228 |
10453 | 229 ** The accumarray function has been optimized and is now significantly |
230 faster in certain important cases. | |
10054 | 231 |
10292 | 232 ** The behavior of isreal and isnumeric functions was changed to be more |
233 Matlab-compatible. | |
234 | |
10406 | 235 ** The integer math & conversion warnings (Octave:int-convert-nan, |
236 Octave:int-convert-non-int-val, Octave:int-convert-overflow, | |
237 Octave:int-math-overflow) have been removed. | |
238 | |
10453 | 239 ** rem and mod are now built-in functions. They also handle integer |
240 types efficiently using integer arithmetic. | |
10437 | 241 |
10536 | 242 ** Sparse indexing and indexed assignment has been mostly rewritten. |
243 Since Octave uses compressed column storage for sparse matrices, | |
244 major attention is devoted to operations manipulating whole columns. | |
245 Such operations are now significantly faster, as well as some other | |
246 important cases. | |
247 | |
248 Further, it is now possible to pre-allocate a sparse matrix and | |
249 subsequently fill it by assignments, provided they meet certain | |
250 conditions. For more information, consult the `spalloc' function, | |
251 which is no longer a mere dummy. Consequently, nzmax and nnz are no | |
252 longer always equal in Octave. Octave may also produce a matrix with | |
253 nnz < nzmax as a result of other operations, so you should | |
254 consistently use nnz unless you really want to use nzmax | |
255 (i.e. the space allocated for nonzero elements). | |
256 | |
257 Sparse concatenation is also affected, and concatenating sparse | |
258 matrices, especially larger collections, is now significantly more | |
259 efficient. This applies to both the [] operator and the | |
260 cat/vertcat/horzcat functions. | |
261 | |
10639 | 262 ** It is now possible to optionally employ the xGESDD LAPACK drivers for |
263 computing the singular value decomposition using svd(), instead of | |
264 the default xGESVD, using the configuration pseudo-variable | |
265 svd_driver. The xGESDD driver can be up to 6x times faster when | |
266 singular vectors are requested, but is reported to be somewhat less | |
267 robust on highly ill-conditioned matrices. | |
268 | |
269 ** Configuration pseudo-variables, such as page_screen_output or | |
270 confirm_recursive_rmdir (or the above mentioned svd_driver), now | |
271 accept a "local" option as second argument, requesting the change | |
272 to be undone when current function returns: | |
273 | |
274 function [status, msg] = rm_rf (dir) | |
275 confirm_recursive_rmdir (false, "local"); | |
276 [status, msg] = rmdir (dir, "s"); | |
277 ... | |
278 endfunction | |
279 | |
280 Upon return, confirm_recursive_rmdir will be restored to the value | |
281 it had on entry to the function, even if there were subsequent | |
282 changes to the variable in function rm_rf or any of the functions | |
283 it calls. | |
284 | |
10774 | 285 ** pkg now accepts a -forge option for downloading and installing packages |
286 from OctaveForge automatically. For example, | |
287 | |
288 pkg install -forge general | |
289 | |
290 will automatically download the latest release of the general package and | |
291 attempt to install it. No automatic resolving of dependencies is provided. | |
292 Further, | |
10639 | 293 |
10774 | 294 pkg list -forge |
295 | |
296 can be used to list all available packages. | |
297 | |
298 ** The internal data representation of structs has been completely rewritten | |
299 to make certain optimizations feasible. The field data can now be shared | |
300 between structs with equal keys but different dimensions or values, making | |
301 operations that preserve the fields faster. Economized storage is now used | |
302 for scalar structs (just like most other scalars), making their usage more | |
303 memory-efficient. Certain array-like operations on structs (concatenation, | |
304 uniform cellfun, num2cell) have gained a significant speed-up. | |
305 Additionally, the octave_scalar_map class now provides a simpler interface | |
306 to work with scalar structs within a C++ DLD function. | |
10639 | 307 |
10776
062304bd692e
Update NEWS with description of new engineering format for numbers.
Rik <octave@nomad.inbox5.com>
parents:
10774
diff
changeset
|
308 ** Two new formats are available for displaying numbers: |
062304bd692e
Update NEWS with description of new engineering format for numbers.
Rik <octave@nomad.inbox5.com>
parents:
10774
diff
changeset
|
309 format short eng |
062304bd692e
Update NEWS with description of new engineering format for numbers.
Rik <octave@nomad.inbox5.com>
parents:
10774
diff
changeset
|
310 format long eng |
062304bd692e
Update NEWS with description of new engineering format for numbers.
Rik <octave@nomad.inbox5.com>
parents:
10774
diff
changeset
|
311 Both display numbers in engineering notation, i.e., mantissa + exponent |
062304bd692e
Update NEWS with description of new engineering format for numbers.
Rik <octave@nomad.inbox5.com>
parents:
10774
diff
changeset
|
312 where the exponent is a multiple of 3. |
062304bd692e
Update NEWS with description of new engineering format for numbers.
Rik <octave@nomad.inbox5.com>
parents:
10774
diff
changeset
|
313 |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
314 Summary of important user-visible changes for version 3.2: |
5913 | 315 --------------------------------------------------------- |
2452 | 316 |
8737 | 317 ** Compatibility with Matlab graphics has been improved. |
6329 | 318 |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
319 The hggroup object and associated listener callback functions have |
8737 | 320 been added allowing the inclusion of group objects. Data sources |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
321 have been added to these group objects such that |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
322 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
323 x = 0:0.1:10; |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
324 y = sin (x); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
325 plot (x, y, "ydatasource", "y"); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
326 for i = 1 : 100 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
327 pause(0.1) |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
328 y = sin (x + 0.1 * i); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
329 refreshdata(); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
330 endfor |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
331 |
8737 | 332 works as expected. This capability has be used to introduce |
9031
1052a66078cf
Documentation cleanup of top-level Octave directory (READMEs, INSTALL)
Rik <rdrider0-list@yahoo.com>
parents:
8932
diff
changeset
|
333 stem-series, bar-series, etc., objects for better Matlab |
8737 | 334 compatibility. |
335 | |
336 ** New graphics functions: | |
337 | |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
338 addlistener ezcontour gcbo refresh |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
339 addproperty ezcontourf ginput refreshdata |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
340 allchild ezmesh gtext specular |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
341 available_backends ezmeshc intwarning surfl |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
342 backend ezplot ishghandle trisurf |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
343 cla ezplot3 isocolors waitforbuttonpress |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
344 clabel ezpolar isonormals |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
345 comet ezsurf isosurface |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
346 dellistener findall linkprop |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9042
diff
changeset
|
347 diffuse gcbf plotmatrix |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
348 |
8737 | 349 ** New experimental OpenGL/FLTK based plotting system. |
350 | |
351 An experimental plotting system based on OpenGL and the FLTK | |
352 toolkit is now part of Octave. This backend is disabled by | |
353 default. You can switch to using it with the command | |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
354 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
355 backend ("fltk") |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
356 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
357 for all future figures or for a particular figure with the command |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
358 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
359 backend (h, "fltk") |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
360 |
8737 | 361 where "h" is a valid figure handle. Please note that this backend |
362 does not yet support text objects. Obviously, this is a necessary | |
363 feature before it can be considered usable. We are looking for | |
364 volunteers to help implement this missing feature. | |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
365 |
8737 | 366 ** Functions providing direct access to gnuplot have been removed. |
367 | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
368 The functions __gnuplot_plot__, __gnuplot_set__, __gnuplot_raw__, |
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
369 __gnuplot_show__, __gnuplot_replot__, __gnuplot_splot__, |
8737 | 370 __gnuplot_save_data__ and __gnuplot_send_inline_data__ have been |
371 removed from Octave. These function were incompatible with the | |
372 high level graphics handle code. | |
6329 | 373 |
8885 | 374 ** The Control, Finance and Quaternion functions have been removed. |
375 | |
376 These functions are now available as separate packages from | |
377 | |
378 http://octave.sourceforge.net/packages.html | |
379 | |
380 and can be reinstalled using the Octave package manager (see | |
381 the pkg function). | |
382 | |
383 ** Specific sparse matrix functions removed. | |
384 | |
385 The following functions, which handled only sparse matrices have | |
386 been removed. Instead of calling these functions directly, you | |
387 should use the corresponding function without the "sp" prefix. | |
8737 | 388 |
8885 | 389 spatan2 spcumsum spkron spprod |
390 spchol spdet splchol spqr | |
391 spchol2inv spdiag splu spsum | |
392 spcholinv spfind spmax spsumsqk | |
393 spcumprod spinv spmin | |
394 | |
395 ** Improvements to the debugger. | |
396 | |
397 The interactive debugging features have been improved. Stopping | |
398 on statements with dbstop should work correctly now. Stepping | |
399 into and over functions, and stepping one statement at a time | |
400 (with dbstep) now works. Moving up and down the call stack with | |
401 dbup and dbdown now works. The dbstack function is now available | |
402 to print the current function call stack. The new dbquit function | |
403 is available to exit the debugging mode. | |
404 | |
405 ** Improved traceback error messages. | |
406 | |
407 Traceback error messages are much more concise and easier to | |
408 understand. They now display information about the function call | |
409 stack instead of the stack of all statements that were active at | |
410 the point of the error. | |
8014
44d206ae68c9
improve fsolve compatibility
John W. Eaton <jwe@octave.org>
parents:
7990
diff
changeset
|
411 |
8737 | 412 ** Object Oriented Programming. |
8405
d79dfbff2f9d
document new norm features in NEWS
Jaroslav Hajek <highegg@gmail.com>
parents:
8396
diff
changeset
|
413 |
8737 | 414 Octave now includes OOP features and the user can create their own |
415 class objects and overloaded functions and operators. For | |
416 example, all methods of a class called "myclass" will be found in | |
417 a directory "@myclass" on the users path. The class specific | |
418 versions of functions and operators take precedence over the | |
419 generic versions of these functions. | |
420 | |
421 New functions related to OOP include | |
7189 | 422 |
8737 | 423 class inferiorto isobject loadobj methods superiorto |
424 | |
425 See the Octave manual for more details. | |
7038 | 426 |
8747 | 427 ** Parsing of Command-style Functions. |
428 | |
429 Octave now parses command-style functions without needing to first | |
430 declare them with "mark_as_command". The rules for recognizing a | |
431 command-style function calls are | |
432 | |
433 * A command must appear as the first word in a statement, | |
434 followed by a space. | |
435 | |
436 * The first character after the space must not be '=' or '(' | |
437 | |
438 * The next token after the space must not look like a binary | |
439 operator. | |
440 | |
441 These rules should be mostly compatible with the way Matlab parses | |
442 command-style function calls and allow users to define commands in | |
443 .m files without having to mark them as commands. | |
444 | |
445 Note that previous versions of Octave allowed expressions like | |
446 | |
447 x = load -text foo.dat | |
448 | |
449 but an expression like this will now generate a parse error. In | |
450 order to assign the value returned by a function to a variable, | |
451 you must use the normal function call syntax: | |
452 | |
453 x = load ("-text", "foo.dat"); | |
454 | |
8737 | 455 ** Block comments. |
456 | |
8747 | 457 Commented code can be between matching "#{" and "#}" or "%{" and |
458 "%}" markers, even if the commented code spans several line. This | |
459 allows blocks code to be commented, without needing to comment | |
460 each line. For example, | |
5814 | 461 |
8747 | 462 function [s, t] = func (x, y) |
463 s = 2 * x; | |
464 #{ | |
465 s *= y; | |
466 t = y + x; | |
467 #} | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
468 endfunction |
5814 | 469 |
8747 | 470 the lines "s *= y;" and "t = y + x" will not be executed. |
8737 | 471 |
472 ** Special treatment in the parser of expressions like "a' * b". | |
2452 | 473 |
8737 | 474 In these cases the transpose is no longer explicitly formed and |
475 BLAS libraries are called with the transpose flagged, | |
476 significantly improving performance for these kinds of | |
477 operations. | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8405
diff
changeset
|
478 |
8737 | 479 ** Single Precision data type. |
2452 | 480 |
8737 | 481 Octave now includes a single precision data type. Single |
482 precision variables can be created with the "single" command, or | |
9034
52515efc50c0
Documentation cleanup on NEWS file
Rik <rdrider0-list@yahoo.com>
parents:
9031
diff
changeset
|
483 from functions like ones, eye, etc. For example, |
5995 | 484 |
8737 | 485 single (1) |
486 ones (2, 2, "single") | |
487 zeros (2, 2, "single") | |
488 eye (2, 2, "single") | |
489 Inf (2, 2, "single") | |
490 NaN (2, 2, "single") | |
491 NA (2, 2, "single") | |
7279 | 492 |
8737 | 493 all create single precision variables. For compatibility with |
494 Matlab, mixed double/single precision operators and functions | |
495 return single precision types. | |
496 | |
497 As a consequence of this addition to Octave the internal | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
498 representation of the double precision NA value has changed, and |
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
499 so users that make use of data generated by Octave with R or |
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
500 visa-versa are warned that compatibility might not be assured. |
7279 | 501 |
8737 | 502 ** Improved array indexing. |
503 | |
504 The underlying code used for indexing of arrays has been | |
9034
52515efc50c0
Documentation cleanup on NEWS file
Rik <rdrider0-list@yahoo.com>
parents:
9031
diff
changeset
|
505 completely rewritten and indexing is now significantly faster. |
8737 | 506 |
8755 | 507 ** Improved memory management. |
508 | |
509 Octave will now attempt to share data in some cases where previously | |
510 a copy would be made, such as certain array slicing operations or | |
9031
1052a66078cf
Documentation cleanup of top-level Octave directory (READMEs, INSTALL)
Rik <rdrider0-list@yahoo.com>
parents:
8932
diff
changeset
|
511 conversions between cells, structs and cs-lists. This usually reduces |
8755 | 512 both time and memory consumption. |
9128 | 513 Also, Octave will now attempt to detect and optimize usage of a vector |
514 as a stack, when elements are being repeatedly inserted at/removed from | |
515 the end of the vector. | |
8755 | 516 |
8738 | 517 ** Improved performance for reduction operations. |
518 | |
8755 | 519 The performance of the sum, prod, sumsq, cumsum, cumprod, any, all, |
520 max and min functions has been significantly improved. | |
8738 | 521 |
9006 | 522 ** Sorting and searching. |
523 | |
524 The performance of sort has been improved, especially when sorting | |
10453 | 525 indices are requested. An efficient built-in issorted |
526 implementation was added. The sortrows function now uses a more | |
527 efficient algorithm, especially in the homegeneous case. The lookup | |
528 function is now a built-in function performing a binary search, | |
529 optimized for long runs of close elements. Lookup also works with | |
530 cell arrays of strings. | |
9006 | 531 |
532 ** Range arithmetics | |
533 | |
10453 | 534 For some operations on ranges, Octave will attempt to keep the |
535 result as a range. These include negation, adding a scalar, | |
536 subtracting a scalar, and multiplying by a scalar. Ranges with zero | |
537 increment are allowed and can be constructed using the built-in | |
538 function `ones'. | |
9006 | 539 |
540 ** Various performance improvements. | |
541 | |
10453 | 542 Performance of a number of other built-in operations and functions |
543 was improved, including: | |
9006 | 544 |
545 * logical operations | |
546 * comparison operators | |
547 * element-wise power | |
548 * accumarray | |
549 * cellfun | |
550 * isnan | |
551 * isinf | |
552 * isfinite | |
553 * nchoosek | |
554 * repmat | |
555 * strcmp | |
556 | |
8737 | 557 ** 64-bit integer arithmetic. |
558 | |
559 Arithmetic with 64-bit integers (int64 and uint64 types) is fully | |
560 supported, with saturation semantics like the other integer types. | |
561 Performance of most integer arithmetic operations has been | |
562 improved by using integer arithmetic directly. Previously, Octave | |
563 performed integer math with saturation semantics by converting the | |
564 operands to double precision, performing the operation, and then | |
565 converting the result back to an integer value, truncating if | |
566 necessary. | |
567 | |
8885 | 568 ** Diagonal and permutation matrices. |
569 | |
570 The interpreter can now treat diagonal and permutation matrices as | |
571 special objects that store only the non-zero elements, rather than | |
572 general full matrices. Therefore, it is now possible to construct | |
573 and use these matrices in linear algebra without suffering a | |
574 performance penalty due to storing large numbers of zero elements. | |
575 | |
576 ** Improvements to fsolve. | |
577 | |
578 The fsolve function now accepts an option structure argument (see | |
579 also the optimset function). The INFO values returned from fsolve | |
580 have changed to be compatible with Matlab's fsolve function. | |
581 Additionally, fsolve is now able to solve overdetermined systems, | |
582 complex-differentiable complex systems, systems with a sparse | |
583 jacobian and can work in single precision if given single precision | |
9031
1052a66078cf
Documentation cleanup of top-level Octave directory (READMEs, INSTALL)
Rik <rdrider0-list@yahoo.com>
parents:
8932
diff
changeset
|
584 inputs. It can also be called recursively. |
8885 | 585 |
8737 | 586 ** Improvements to the norm function. |
587 | |
588 The norm function is now able to compute row or column norms of a | |
589 matrix in a single call, as well as general matrix p-norms. | |
590 | |
591 ** New functions for computing some eigenvalues or singular values. | |
592 | |
593 The eigs and svds functions have been included in Octave. These | |
594 functions require the ARPACK library (now distributed under a | |
595 GPL-compatible license). | |
596 | |
597 ** New QR and Cholesky factorization updating functions. | |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8292
diff
changeset
|
598 |
8737 | 599 choldelete cholshift qrdelete qrshift |
600 cholinsert cholupdate qrinsert qrupdate | |
601 | |
602 ** New quadrature functions. | |
603 | |
604 dblquad quadgk quadv triplequad | |
605 | |
8885 | 606 ** New functions for reading and writing images. |
607 | |
608 The imwrite and imread functions have been included in Octave. | |
609 These functions require the GraphicsMagick library. The new | |
610 function imfinfo provides information about an image file (size, | |
611 type, colors, etc.) | |
612 | |
9215
1500d0197484
allow multiple input event hook functions to be installed simultaneously
John W. Eaton <jwe@octave.org>
parents:
9128
diff
changeset
|
613 ** The input_event_hook function has been replaced by the pair of |
1500d0197484
allow multiple input event hook functions to be installed simultaneously
John W. Eaton <jwe@octave.org>
parents:
9128
diff
changeset
|
614 functions add_input_event_hook and remove_input_event_hook so that |
1500d0197484
allow multiple input event hook functions to be installed simultaneously
John W. Eaton <jwe@octave.org>
parents:
9128
diff
changeset
|
615 more than one hook function may be installed at a time. |
1500d0197484
allow multiple input event hook functions to be installed simultaneously
John W. Eaton <jwe@octave.org>
parents:
9128
diff
changeset
|
616 |
8737 | 617 ** Other miscellaneous new functions. |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8292
diff
changeset
|
618 |
8932
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8888
diff
changeset
|
619 addtodate hypot reallog |
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8888
diff
changeset
|
620 bicgstab idivide realpow |
9006 | 621 cellslices info realsqrt |
622 cgs interp1q rectint | |
623 command_line_path isdebugmode regexptranslate | |
624 contrast isfloat restoredefaultpath | |
625 convn isstrprop roundb | |
626 cummin log1p rundemos | |
627 cummax lsqnonneg runlength | |
628 datetick matlabroot saveobj | |
629 display namelengthmax spaugment | |
630 expm1 nargoutchk strchr | |
631 filemarker pathdef strvcat | |
632 fstat perl subspace | |
633 full prctile symvar | |
634 fzero quantile treelayout | |
635 genvarname re_read_readline_init_file validatestring | |
636 histc | |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8292
diff
changeset
|
637 |
8885 | 638 ** Changes to strcat. |
639 | |
640 The strcat function is now compatible with Matlab's strcat | |
641 function, which removes trailing whitespace when concatenating | |
642 character strings. For example | |
643 | |
644 strcat ('foo ', 'bar') | |
645 ==> 'foobar' | |
646 | |
647 The new function cstrcat provides the previous behavior of | |
648 Octave's strcat. | |
649 | |
650 ** Improvements to the help functions. | |
651 | |
9034
52515efc50c0
Documentation cleanup on NEWS file
Rik <rdrider0-list@yahoo.com>
parents:
9031
diff
changeset
|
652 The help system has been mostly re-implemented in .m files to make |
8885 | 653 it easier to modify. Performance of the lookfor function has been |
654 greatly improved by caching the help text from all functions that | |
655 are distributed with Octave. The pkg function has been modified | |
656 to generate cache files for external packages when they are | |
657 installed. | |
658 | |
8888
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
659 ** Deprecated functions. |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
660 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
661 The following functions were deprecated in Octave 3.0 and will be |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
662 removed in Octave 3.4 (or whatever version is the second major |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
663 release after 3.0): |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
664 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
665 beta_cdf geometric_pdf pascal_pdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
666 beta_inv geometric_rnd pascal_rnd |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
667 beta_pdf hypergeometric_cdf poisson_cdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
668 beta_rnd hypergeometric_inv poisson_inv |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
669 binomial_cdf hypergeometric_pdf poisson_pdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
670 binomial_inv hypergeometric_rnd poisson_rnd |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
671 binomial_pdf intersection polyinteg |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
672 binomial_rnd is_bool setstr |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
673 chisquare_cdf is_complex struct_contains |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
674 chisquare_inv is_list struct_elements |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
675 chisquare_pdf is_matrix t_cdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
676 chisquare_rnd is_scalar t_inv |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
677 clearplot is_square t_pdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
678 clg is_stream t_rnd |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
679 com2str is_struct uniform_cdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
680 exponential_cdf is_symmetric uniform_inv |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
681 exponential_inv is_vector uniform_pdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
682 exponential_pdf isstr uniform_rnd |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
683 exponential_rnd lognormal_cdf weibcdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
684 f_cdf lognormal_inv weibinv |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
685 f_inv lognormal_pdf weibpdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
686 f_pdf lognormal_rnd weibrnd |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
687 f_rnd meshdom weibull_cdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
688 gamma_cdf normal_cdf weibull_inv |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
689 gamma_inv normal_inv weibull_pdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
690 gamma_pdf normal_pdf weibull_rnd |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
691 gamma_rnd normal_rnd wiener_rnd |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
692 geometric_cdf pascal_cdf |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
693 geometric_inv pascal_inv |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
694 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
695 The following functions are now deprecated in Octave 3.2 and will |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
696 be removed in Octave 3.6 (or whatever version is the second major |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
697 release after 3.2): |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
698 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
699 create_set spcholinv spmax |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
700 dmult spcumprod spmin |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
701 iscommand spcumsum spprod |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
702 israwcommand spdet spqr |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
703 lchol spdiag spsum |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
704 loadimage spfind spsumsq |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
705 mark_as_command spinv str2mat |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
706 mark_as_rawcommand spkron unmark_command |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
707 spatan2 splchol unmark_rawcommand |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
708 spchol split |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
709 spchol2inv splu |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
710 |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
711 See NEWS.3 for old news. |