Mercurial > hg > octave-nkf
annotate NEWS @ 8924:3c3cbe8f18e0 ss-3-1-54
bump version info for snapshot
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 07 Mar 2009 13:28:03 -0500 |
parents | 0c7b0049c023 |
children | 2d0f8692a82e |
rev | line source |
---|---|
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
1 Summary of important user-visible changes for version 3.2: |
5913 | 2 --------------------------------------------------------- |
2452 | 3 |
8737 | 4 ** Compatibility with Matlab graphics has been improved. |
6329 | 5 |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
6 The hggroup object and associated listener callback functions have |
8737 | 7 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
|
8 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
|
9 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
10 x = 0:0.1:10; |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
11 y = sin (x); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
12 plot (x, y, "ydatasource", "y"); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
13 for i = 1 : 100 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
14 pause(0.1) |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
15 y = sin (x + 0.1 * i); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
16 refreshdata(); |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
17 endfor |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
18 |
8737 | 19 works as expected. This capability has be used to introduce |
20 stem-series, bar-series, etc. objects for better Matlab | |
21 compatibility. | |
22 | |
23 ** New graphics functions: | |
24 | |
8747 | 25 addlistener diffuse ezsurfc plotmatrix |
26 addproperty ezcontour findall refresh | |
27 allchild ezcontourf gcbf refreshdata | |
28 available_backends ezmesh gcbo specular | |
29 backend ezmeshc ginput surfl | |
30 cla ezplot gtext waitforbuttonpress | |
31 clabel ezplot3 intwarning | |
32 comet ezpolar ishghandle | |
33 dellistener ezsurf linkprop | |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
34 |
8737 | 35 ** New experimental OpenGL/FLTK based plotting system. |
36 | |
37 An experimental plotting system based on OpenGL and the FLTK | |
38 toolkit is now part of Octave. This backend is disabled by | |
39 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
|
40 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
41 backend ("fltk") |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
42 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
43 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
|
44 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
45 backend (h, "fltk") |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
46 |
8737 | 47 where "h" is a valid figure handle. Please note that this backend |
48 does not yet support text objects. Obviously, this is a necessary | |
49 feature before it can be considered usable. We are looking for | |
50 volunteers to help implement this missing feature. | |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8014
diff
changeset
|
51 |
8737 | 52 ** Functions providing direct access to gnuplot have been removed. |
53 | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
54 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
|
55 __gnuplot_show__, __gnuplot_replot__, __gnuplot_splot__, |
8737 | 56 __gnuplot_save_data__ and __gnuplot_send_inline_data__ have been |
57 removed from Octave. These function were incompatible with the | |
58 high level graphics handle code. | |
6329 | 59 |
8885 | 60 ** The Control, Finance and Quaternion functions have been removed. |
61 | |
62 These functions are now available as separate packages from | |
63 | |
64 http://octave.sourceforge.net/packages.html | |
65 | |
66 and can be reinstalled using the Octave package manager (see | |
67 the pkg function). | |
68 | |
69 ** Specific sparse matrix functions removed. | |
70 | |
71 The following functions, which handled only sparse matrices have | |
72 been removed. Instead of calling these functions directly, you | |
73 should use the corresponding function without the "sp" prefix. | |
8737 | 74 |
8885 | 75 spatan2 spcumsum spkron spprod |
76 spchol spdet splchol spqr | |
77 spchol2inv spdiag splu spsum | |
78 spcholinv spfind spmax spsumsqk | |
79 spcumprod spinv spmin | |
80 | |
81 ** Improvements to the debugger. | |
82 | |
83 The interactive debugging features have been improved. Stopping | |
84 on statements with dbstop should work correctly now. Stepping | |
85 into and over functions, and stepping one statement at a time | |
86 (with dbstep) now works. Moving up and down the call stack with | |
87 dbup and dbdown now works. The dbstack function is now available | |
88 to print the current function call stack. The new dbquit function | |
89 is available to exit the debugging mode. | |
90 | |
91 ** Improved traceback error messages. | |
92 | |
93 Traceback error messages are much more concise and easier to | |
94 understand. They now display information about the function call | |
95 stack instead of the stack of all statements that were active at | |
96 the point of the error. | |
8014
44d206ae68c9
improve fsolve compatibility
John W. Eaton <jwe@octave.org>
parents:
7990
diff
changeset
|
97 |
8737 | 98 ** Object Oriented Programming. |
8405
d79dfbff2f9d
document new norm features in NEWS
Jaroslav Hajek <highegg@gmail.com>
parents:
8396
diff
changeset
|
99 |
8737 | 100 Octave now includes OOP features and the user can create their own |
101 class objects and overloaded functions and operators. For | |
102 example, all methods of a class called "myclass" will be found in | |
103 a directory "@myclass" on the users path. The class specific | |
104 versions of functions and operators take precedence over the | |
105 generic versions of these functions. | |
106 | |
107 New functions related to OOP include | |
7189 | 108 |
8737 | 109 class inferiorto isobject loadobj methods superiorto |
110 | |
111 See the Octave manual for more details. | |
7038 | 112 |
8747 | 113 ** Parsing of Command-style Functions. |
114 | |
115 Octave now parses command-style functions without needing to first | |
116 declare them with "mark_as_command". The rules for recognizing a | |
117 command-style function calls are | |
118 | |
119 * A command must appear as the first word in a statement, | |
120 followed by a space. | |
121 | |
122 * The first character after the space must not be '=' or '(' | |
123 | |
124 * The next token after the space must not look like a binary | |
125 operator. | |
126 | |
127 These rules should be mostly compatible with the way Matlab parses | |
128 command-style function calls and allow users to define commands in | |
129 .m files without having to mark them as commands. | |
130 | |
131 Note that previous versions of Octave allowed expressions like | |
132 | |
133 x = load -text foo.dat | |
134 | |
135 but an expression like this will now generate a parse error. In | |
136 order to assign the value returned by a function to a variable, | |
137 you must use the normal function call syntax: | |
138 | |
139 x = load ("-text", "foo.dat"); | |
140 | |
8737 | 141 ** Block comments. |
142 | |
8747 | 143 Commented code can be between matching "#{" and "#}" or "%{" and |
144 "%}" markers, even if the commented code spans several line. This | |
145 allows blocks code to be commented, without needing to comment | |
146 each line. For example, | |
5814 | 147 |
8747 | 148 function [s, t] = func (x, y) |
149 s = 2 * x; | |
150 #{ | |
151 s *= y; | |
152 t = y + x; | |
153 #} | |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
154 endfunction |
5814 | 155 |
8747 | 156 the lines "s *= y;" and "t = y + x" will not be executed. |
8737 | 157 |
158 ** Special treatment in the parser of expressions like "a' * b". | |
2452 | 159 |
8737 | 160 In these cases the transpose is no longer explicitly formed and |
161 BLAS libraries are called with the transpose flagged, | |
162 significantly improving performance for these kinds of | |
163 operations. | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8405
diff
changeset
|
164 |
8737 | 165 ** Single Precision data type. |
2452 | 166 |
8737 | 167 Octave now includes a single precision data type. Single |
168 precision variables can be created with the "single" command, or | |
169 from function like ones, etc. For example | |
5995 | 170 |
8737 | 171 single (1) |
172 ones (2, 2, "single") | |
173 zeros (2, 2, "single") | |
174 eye (2, 2, "single") | |
175 Inf (2, 2, "single") | |
176 NaN (2, 2, "single") | |
177 NA (2, 2, "single") | |
7279 | 178 |
8737 | 179 all create single precision variables. For compatibility with |
180 Matlab, mixed double/single precision operators and functions | |
181 return single precision types. | |
182 | |
183 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
|
184 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
|
185 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
|
186 visa-versa are warned that compatibility might not be assured. |
7279 | 187 |
8737 | 188 ** Improved array indexing. |
189 | |
190 The underlying code used for indexing of arrays has been | |
191 completely rewritten and so the indexing of arrays is now | |
192 significantly faster. | |
193 | |
8755 | 194 ** Improved memory management. |
195 | |
196 Octave will now attempt to share data in some cases where previously | |
197 a copy would be made, such as certain array slicing operations or | |
198 conversions between cells, structs and cs-lists. This usually reduces | |
199 both time and memory consumption. | |
200 | |
8738 | 201 ** Improved performance for reduction operations. |
202 | |
8755 | 203 The performance of the sum, prod, sumsq, cumsum, cumprod, any, all, |
204 max and min functions has been significantly improved. | |
8738 | 205 |
8737 | 206 ** 64-bit integer arithmetic. |
207 | |
208 Arithmetic with 64-bit integers (int64 and uint64 types) is fully | |
209 supported, with saturation semantics like the other integer types. | |
210 Performance of most integer arithmetic operations has been | |
211 improved by using integer arithmetic directly. Previously, Octave | |
212 performed integer math with saturation semantics by converting the | |
213 operands to double precision, performing the operation, and then | |
214 converting the result back to an integer value, truncating if | |
215 necessary. | |
216 | |
8885 | 217 ** Diagonal and permutation matrices. |
218 | |
219 The interpreter can now treat diagonal and permutation matrices as | |
220 special objects that store only the non-zero elements, rather than | |
221 general full matrices. Therefore, it is now possible to construct | |
222 and use these matrices in linear algebra without suffering a | |
223 performance penalty due to storing large numbers of zero elements. | |
224 | |
225 ** Improvements to fsolve. | |
226 | |
227 The fsolve function now accepts an option structure argument (see | |
228 also the optimset function). The INFO values returned from fsolve | |
229 have changed to be compatible with Matlab's fsolve function. | |
230 Additionally, fsolve is now able to solve overdetermined systems, | |
231 complex-differentiable complex systems, systems with a sparse | |
232 jacobian and can work in single precision if given single precision | |
233 inputs. It can also be called recursively. | |
234 | |
8737 | 235 ** Improvements to the norm function. |
236 | |
237 The norm function is now able to compute row or column norms of a | |
238 matrix in a single call, as well as general matrix p-norms. | |
239 | |
240 ** New functions for computing some eigenvalues or singular values. | |
241 | |
242 The eigs and svds functions have been included in Octave. These | |
243 functions require the ARPACK library (now distributed under a | |
244 GPL-compatible license). | |
245 | |
246 ** 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
|
247 |
8737 | 248 choldelete cholshift qrdelete qrshift |
249 cholinsert cholupdate qrinsert qrupdate | |
250 | |
251 ** New quadrature functions. | |
252 | |
253 dblquad quadgk quadv triplequad | |
254 | |
8885 | 255 ** New functions for reading and writing images. |
256 | |
257 The imwrite and imread functions have been included in Octave. | |
258 These functions require the GraphicsMagick library. The new | |
259 function imfinfo provides information about an image file (size, | |
260 type, colors, etc.) | |
261 | |
8737 | 262 ** Other miscellaneous new functions. |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8292
diff
changeset
|
263 |
8779 | 264 addtodate idivide realpow |
265 bicgstab info realsqrt | |
266 cgs interp1q rectint | |
267 command_line_path isdebugmode regexptranslate | |
268 contrast isfloat restoredefaultpath | |
269 convn isstrprop roundb | |
270 cummin log1p rundemos | |
271 cummax lsqnonneg runlength | |
272 datetick matlabroot saveobj | |
273 display namelengthmax spaugment | |
274 expm1 nargoutchk strchr | |
275 filemarker pathdef strvcat | |
276 fstat perl subspace | |
277 full prctile symvar | |
278 fzero quantile treelayout | |
279 genvarname re_read_readline_init_file validatestring | |
280 hypot reallog | |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8292
diff
changeset
|
281 |
8885 | 282 ** Changes to strcat. |
283 | |
284 The strcat function is now compatible with Matlab's strcat | |
285 function, which removes trailing whitespace when concatenating | |
286 character strings. For example | |
287 | |
288 strcat ('foo ', 'bar') | |
289 ==> 'foobar' | |
290 | |
291 The new function cstrcat provides the previous behavior of | |
292 Octave's strcat. | |
293 | |
294 ** Improvements to the help functions. | |
295 | |
296 The help system has been reimplemented mostly in .m files to make | |
297 it easier to modify. Performance of the lookfor function has been | |
298 greatly improved by caching the help text from all functions that | |
299 are distributed with Octave. The pkg function has been modified | |
300 to generate cache files for external packages when they are | |
301 installed. | |
302 | |
8888
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
303 ** Deprecated functions. |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
304 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
305 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
|
306 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
|
307 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
|
308 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
309 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
|
310 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
|
311 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
|
312 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
|
313 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
|
314 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
|
315 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
|
316 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
|
317 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
|
318 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
|
319 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
|
320 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
|
321 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
|
322 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
|
323 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
|
324 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
|
325 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
|
326 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
|
327 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
|
328 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
|
329 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
|
330 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
|
331 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
|
332 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
|
333 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
|
334 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
|
335 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
|
336 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
|
337 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
|
338 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
339 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
|
340 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
|
341 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
|
342 |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
343 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
|
344 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
|
345 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
|
346 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
|
347 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
|
348 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
|
349 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
|
350 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
|
351 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
|
352 spchol split |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
353 spchol2inv splu |
0c7b0049c023
mark create_set as deprecated in 3.2, not 3.0
John W. Eaton <jwe@octave.org>
parents:
8885
diff
changeset
|
354 |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7279
diff
changeset
|
355 See NEWS.3 for old news. |