Mercurial > hg > octave-nkf
comparison NEWS @ 10966:07b4cd795742
update NEWS
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Mon, 13 Sep 2010 08:41:06 +0200 |
parents | 300636502235 |
children | 41d18f6342f9 |
comparison
equal
deleted
inserted
replaced
10965:28ef5a31763d | 10966:07b4cd795742 |
---|---|
334 | 334 |
335 ** By popular demand, dlmread has been extended to allow specifying a custom | 335 ** By popular demand, dlmread has been extended to allow specifying a custom |
336 value for empty fields and also to accept file IDs opened by fopen. Likewise, | 336 value for empty fields and also to accept file IDs opened by fopen. Likewise, |
337 dlmwrite can write to file IDs. | 337 dlmwrite can write to file IDs. |
338 | 338 |
339 ** Octave can now optimize away the interpreter overhead of an anonymous function | |
340 handle, if the function simply calls another function or handle with some of its | |
341 parameters bound to certain values. Example: | |
342 | |
343 f = @(x) sum (x, 1); | |
344 | |
345 When f is called, the call is forwarded to @sum with the constant 1 appended, and | |
346 the anonymous function call does not occur on the call stack. | |
339 | 347 |
340 Summary of important user-visible changes for version 3.2: | 348 Summary of important user-visible changes for version 3.2: |
341 --------------------------------------------------------- | 349 --------------------------------------------------------- |
342 | 350 |
343 ** Compatibility with Matlab graphics has been improved. | 351 ** Compatibility with Matlab graphics has been improved. |