Mercurial > hg > octave-max
annotate NEWS @ 10873:8f17e3309a82
update NEWS
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Mon, 09 Aug 2010 12:24:14 +0200 |
parents | 61cb53ae9db3 |
children | 9993f1354713 |
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 |
10829 | 314 ** The following new functions were added: |
315 | |
316 accumdim erfcx luupdate ppder sizemax | |
317 bitpack fileread merge ppint strread | |
318 bitunpack fminbnd nfields ppjumps textread | |
319 blkmm fskipl nth_element pqpnonneg whitebg | |
320 cbrt ifelse onCleanup repelems | |
321 chop ishermitian pbaspect reset | |
322 daspect isindex powerset rsf2csf | |
10873 | 323 |
324 ** The behavior of struct assignments to non-struct values has been changed. | |
325 Previously, it was possible to overwrite an arbitrary value: | |
326 | |
327 a = 1; | |
328 a.x = 2; | |
329 | |
330 This is no longer possible unless a is an empty matrix or cell array. | |
10829 | 331 |
332 | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
333 Summary of important user-visible changes for version 3.2: |
5913 | 334 --------------------------------------------------------- |
2452 | 335 |
8737 | 336 ** Compatibility with Matlab graphics has been improved. |
6329 | 337 |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
338 The hggroup object and associated listener callback functions have |
8737 | 339 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
|
340 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
|
341 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
342 x = 0:0.1:10; |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
343 y = sin (x); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
344 plot (x, y, "ydatasource", "y"); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
345 for i = 1 : 100 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
346 pause(0.1) |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
347 y = sin (x + 0.1 * i); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
348 refreshdata(); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
349 endfor |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
350 |
8737 | 351 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
|
352 stem-series, bar-series, etc., objects for better Matlab |
8737 | 353 compatibility. |
354 | |
355 ** New graphics functions: | |
356 | |
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
|
357 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
|
358 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
|
359 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
|
360 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
|
361 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
|
362 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
|
363 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
|
364 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
|
365 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
|
366 diffuse gcbf plotmatrix |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
367 |
8737 | 368 ** New experimental OpenGL/FLTK based plotting system. |
369 | |
370 An experimental plotting system based on OpenGL and the FLTK | |
371 toolkit is now part of Octave. This backend is disabled by | |
372 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
|
373 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
374 backend ("fltk") |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
375 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
376 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
|
377 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
378 backend (h, "fltk") |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
379 |
8737 | 380 where "h" is a valid figure handle. Please note that this backend |
381 does not yet support text objects. Obviously, this is a necessary | |
382 feature before it can be considered usable. We are looking for | |
383 volunteers to help implement this missing feature. | |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
384 |
8737 | 385 ** Functions providing direct access to gnuplot have been removed. |
386 | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
387 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
|
388 __gnuplot_show__, __gnuplot_replot__, __gnuplot_splot__, |
8737 | 389 __gnuplot_save_data__ and __gnuplot_send_inline_data__ have been |
390 removed from Octave. These function were incompatible with the | |
391 high level graphics handle code. | |
6329 | 392 |
8885 | 393 ** The Control, Finance and Quaternion functions have been removed. |
394 | |
395 These functions are now available as separate packages from | |
396 | |
397 http://octave.sourceforge.net/packages.html | |
398 | |
399 and can be reinstalled using the Octave package manager (see | |
400 the pkg function). | |
401 | |
402 ** Specific sparse matrix functions removed. | |
403 | |
404 The following functions, which handled only sparse matrices have | |
405 been removed. Instead of calling these functions directly, you | |
406 should use the corresponding function without the "sp" prefix. | |
8737 | 407 |
8885 | 408 spatan2 spcumsum spkron spprod |
409 spchol spdet splchol spqr | |
410 spchol2inv spdiag splu spsum | |
411 spcholinv spfind spmax spsumsqk | |
412 spcumprod spinv spmin | |
413 | |
414 ** Improvements to the debugger. | |
415 | |
416 The interactive debugging features have been improved. Stopping | |
417 on statements with dbstop should work correctly now. Stepping | |
418 into and over functions, and stepping one statement at a time | |
419 (with dbstep) now works. Moving up and down the call stack with | |
420 dbup and dbdown now works. The dbstack function is now available | |
421 to print the current function call stack. The new dbquit function | |
422 is available to exit the debugging mode. | |
423 | |
424 ** Improved traceback error messages. | |
425 | |
426 Traceback error messages are much more concise and easier to | |
427 understand. They now display information about the function call | |
428 stack instead of the stack of all statements that were active at | |
429 the point of the error. | |
8014
44d206ae68c9
improve fsolve compatibility
John W. Eaton <jwe@octave.org>
parents:
7990
diff
changeset
|
430 |
8737 | 431 ** Object Oriented Programming. |
8405
d79dfbff2f9d
document new norm features in NEWS
Jaroslav Hajek <highegg@gmail.com>
parents:
8396
diff
changeset
|
432 |
8737 | 433 Octave now includes OOP features and the user can create their own |
434 class objects and overloaded functions and operators. For | |
435 example, all methods of a class called "myclass" will be found in | |
436 a directory "@myclass" on the users path. The class specific | |
437 versions of functions and operators take precedence over the | |
438 generic versions of these functions. | |
439 | |
440 New functions related to OOP include | |
7189 | 441 |
8737 | 442 class inferiorto isobject loadobj methods superiorto |
443 | |
444 See the Octave manual for more details. | |
7038 | 445 |
8747 | 446 ** Parsing of Command-style Functions. |
447 | |
448 Octave now parses command-style functions without needing to first | |
449 declare them with "mark_as_command". The rules for recognizing a | |
450 command-style function calls are | |
451 | |
452 * A command must appear as the first word in a statement, | |
453 followed by a space. | |
454 | |
455 * The first character after the space must not be '=' or '(' | |
456 | |
457 * The next token after the space must not look like a binary | |
458 operator. | |
459 | |
460 These rules should be mostly compatible with the way Matlab parses | |
461 command-style function calls and allow users to define commands in | |
462 .m files without having to mark them as commands. | |
463 | |
464 Note that previous versions of Octave allowed expressions like | |
465 | |
466 x = load -text foo.dat | |
467 | |
468 but an expression like this will now generate a parse error. In | |
469 order to assign the value returned by a function to a variable, | |
470 you must use the normal function call syntax: | |
471 | |
472 x = load ("-text", "foo.dat"); | |
473 | |
8737 | 474 ** Block comments. |
475 | |
8747 | 476 Commented code can be between matching "#{" and "#}" or "%{" and |
477 "%}" markers, even if the commented code spans several line. This | |
478 allows blocks code to be commented, without needing to comment | |
479 each line. For example, | |
5814 | 480 |
8747 | 481 function [s, t] = func (x, y) |
482 s = 2 * x; | |
483 #{ | |
484 s *= y; | |
485 t = y + x; | |
486 #} | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
487 endfunction |
5814 | 488 |
8747 | 489 the lines "s *= y;" and "t = y + x" will not be executed. |
8737 | 490 |
491 ** Special treatment in the parser of expressions like "a' * b". | |
2452 | 492 |
8737 | 493 In these cases the transpose is no longer explicitly formed and |
494 BLAS libraries are called with the transpose flagged, | |
495 significantly improving performance for these kinds of | |
496 operations. | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8405
diff
changeset
|
497 |
8737 | 498 ** Single Precision data type. |
2452 | 499 |
8737 | 500 Octave now includes a single precision data type. Single |
501 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
|
502 from functions like ones, eye, etc. For example, |
5995 | 503 |
8737 | 504 single (1) |
505 ones (2, 2, "single") | |
506 zeros (2, 2, "single") | |
507 eye (2, 2, "single") | |
508 Inf (2, 2, "single") | |
509 NaN (2, 2, "single") | |
510 NA (2, 2, "single") | |
7279 | 511 |
8737 | 512 all create single precision variables. For compatibility with |
513 Matlab, mixed double/single precision operators and functions | |
514 return single precision types. | |
515 | |
516 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
|
517 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
|
518 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
|
519 visa-versa are warned that compatibility might not be assured. |
7279 | 520 |
8737 | 521 ** Improved array indexing. |
522 | |
523 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
|
524 completely rewritten and indexing is now significantly faster. |
8737 | 525 |
8755 | 526 ** Improved memory management. |
527 | |
528 Octave will now attempt to share data in some cases where previously | |
529 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
|
530 conversions between cells, structs and cs-lists. This usually reduces |
8755 | 531 both time and memory consumption. |
9128 | 532 Also, Octave will now attempt to detect and optimize usage of a vector |
533 as a stack, when elements are being repeatedly inserted at/removed from | |
534 the end of the vector. | |
8755 | 535 |
8738 | 536 ** Improved performance for reduction operations. |
537 | |
8755 | 538 The performance of the sum, prod, sumsq, cumsum, cumprod, any, all, |
539 max and min functions has been significantly improved. | |
8738 | 540 |
9006 | 541 ** Sorting and searching. |
542 | |
543 The performance of sort has been improved, especially when sorting | |
10453 | 544 indices are requested. An efficient built-in issorted |
545 implementation was added. The sortrows function now uses a more | |
546 efficient algorithm, especially in the homegeneous case. The lookup | |
547 function is now a built-in function performing a binary search, | |
548 optimized for long runs of close elements. Lookup also works with | |
549 cell arrays of strings. | |
9006 | 550 |
551 ** Range arithmetics | |
552 | |
10453 | 553 For some operations on ranges, Octave will attempt to keep the |
554 result as a range. These include negation, adding a scalar, | |
555 subtracting a scalar, and multiplying by a scalar. Ranges with zero | |
556 increment are allowed and can be constructed using the built-in | |
557 function `ones'. | |
9006 | 558 |
559 ** Various performance improvements. | |
560 | |
10453 | 561 Performance of a number of other built-in operations and functions |
562 was improved, including: | |
9006 | 563 |
564 * logical operations | |
565 * comparison operators | |
566 * element-wise power | |
567 * accumarray | |
568 * cellfun | |
569 * isnan | |
570 * isinf | |
571 * isfinite | |
572 * nchoosek | |
573 * repmat | |
574 * strcmp | |
575 | |
8737 | 576 ** 64-bit integer arithmetic. |
577 | |
578 Arithmetic with 64-bit integers (int64 and uint64 types) is fully | |
579 supported, with saturation semantics like the other integer types. | |
580 Performance of most integer arithmetic operations has been | |
581 improved by using integer arithmetic directly. Previously, Octave | |
582 performed integer math with saturation semantics by converting the | |
583 operands to double precision, performing the operation, and then | |
584 converting the result back to an integer value, truncating if | |
585 necessary. | |
586 | |
8885 | 587 ** Diagonal and permutation matrices. |
588 | |
589 The interpreter can now treat diagonal and permutation matrices as | |
590 special objects that store only the non-zero elements, rather than | |
591 general full matrices. Therefore, it is now possible to construct | |
592 and use these matrices in linear algebra without suffering a | |
593 performance penalty due to storing large numbers of zero elements. | |
594 | |
595 ** Improvements to fsolve. | |
596 | |
597 The fsolve function now accepts an option structure argument (see | |
598 also the optimset function). The INFO values returned from fsolve | |
599 have changed to be compatible with Matlab's fsolve function. | |
600 Additionally, fsolve is now able to solve overdetermined systems, | |
601 complex-differentiable complex systems, systems with a sparse | |
602 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
|
603 inputs. It can also be called recursively. |
8885 | 604 |
8737 | 605 ** Improvements to the norm function. |
606 | |
607 The norm function is now able to compute row or column norms of a | |
608 matrix in a single call, as well as general matrix p-norms. | |
609 | |
610 ** New functions for computing some eigenvalues or singular values. | |
611 | |
612 The eigs and svds functions have been included in Octave. These | |
613 functions require the ARPACK library (now distributed under a | |
614 GPL-compatible license). | |
615 | |
616 ** 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
|
617 |
8737 | 618 choldelete cholshift qrdelete qrshift |
619 cholinsert cholupdate qrinsert qrupdate | |
620 | |
621 ** New quadrature functions. | |
622 | |
623 dblquad quadgk quadv triplequad | |
624 | |
8885 | 625 ** New functions for reading and writing images. |
626 | |
627 The imwrite and imread functions have been included in Octave. | |
628 These functions require the GraphicsMagick library. The new | |
629 function imfinfo provides information about an image file (size, | |
630 type, colors, etc.) | |
631 | |
9215
1500d0197484
allow multiple input event hook functions to be installed simultaneously
John W. Eaton <jwe@octave.org>
parents:
9128
diff
changeset
|
632 ** 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
|
633 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
|
634 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
|
635 |
8737 | 636 ** Other miscellaneous new functions. |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8292
diff
changeset
|
637 |
8932
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8888
diff
changeset
|
638 addtodate hypot reallog |
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8888
diff
changeset
|
639 bicgstab idivide realpow |
9006 | 640 cellslices info realsqrt |
641 cgs interp1q rectint | |
642 command_line_path isdebugmode regexptranslate | |
643 contrast isfloat restoredefaultpath | |
644 convn isstrprop roundb | |
645 cummin log1p rundemos | |
646 cummax lsqnonneg runlength | |
647 datetick matlabroot saveobj | |
648 display namelengthmax spaugment | |
649 expm1 nargoutchk strchr | |
650 filemarker pathdef strvcat | |
651 fstat perl subspace | |
652 full prctile symvar | |
653 fzero quantile treelayout | |
654 genvarname re_read_readline_init_file validatestring | |
655 histc | |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8292
diff
changeset
|
656 |
8885 | 657 ** Changes to strcat. |
658 | |
659 The strcat function is now compatible with Matlab's strcat | |
660 function, which removes trailing whitespace when concatenating | |
661 character strings. For example | |
662 | |
663 strcat ('foo ', 'bar') | |
664 ==> 'foobar' | |
665 | |
666 The new function cstrcat provides the previous behavior of | |
667 Octave's strcat. | |
668 | |
669 ** Improvements to the help functions. | |
670 | |
9034
52515efc50c0
Documentation cleanup on NEWS file
Rik <rdrider0-list@yahoo.com>
parents:
9031
diff
changeset
|
671 The help system has been mostly re-implemented in .m files to make |
8885 | 672 it easier to modify. Performance of the lookfor function has been |
673 greatly improved by caching the help text from all functions that | |
674 are distributed with Octave. The pkg function has been modified | |
675 to generate cache files for external packages when they are | |
676 installed. | |
677 | |
8888
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
678 ** Deprecated functions. |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
679 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
680 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
|
681 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
|
682 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
|
683 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
684 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
|
685 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
|
686 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
|
687 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
|
688 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
|
689 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
|
690 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
|
691 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
|
692 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
|
693 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
|
694 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
|
695 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
|
696 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
|
697 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
|
698 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
|
699 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
|
700 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
|
701 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
|
702 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
|
703 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
|
704 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
|
705 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
|
706 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
|
707 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
|
708 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
|
709 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
|
710 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
|
711 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
|
712 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
|
713 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
714 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
|
715 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
|
716 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
|
717 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
718 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
|
719 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
|
720 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
|
721 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
|
722 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
|
723 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
|
724 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
|
725 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
|
726 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
|
727 spchol split |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
728 spchol2inv splu |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
729 |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
730 See NEWS.3 for old news. |