Mercurial > hg > octave-lyh
changeset 10966:07b4cd795742
update NEWS
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Mon, 13 Sep 2010 08:41:06 +0200 |
parents | 28ef5a31763d |
children | 2470b1bf191a |
files | ChangeLog NEWS |
diffstat | 2 files changed, 12 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-09-13 Jaroslav Hajek <highegg@gmail.com> + + * NEWS: Update. + 2010-09-10 Jaroslav Hajek <highegg@gmail.com> * m4/ax_blas_f77_func.m4: Update.
--- a/NEWS +++ b/NEWS @@ -336,6 +336,14 @@ value for empty fields and also to accept file IDs opened by fopen. Likewise, dlmwrite can write to file IDs. + ** Octave can now optimize away the interpreter overhead of an anonymous function + handle, if the function simply calls another function or handle with some of its + parameters bound to certain values. Example: + + f = @(x) sum (x, 1); + + When f is called, the call is forwarded to @sum with the constant 1 appended, and + the anonymous function call does not occur on the call stack. Summary of important user-visible changes for version 3.2: ---------------------------------------------------------