Mercurial > hg > octave-nkf
comparison doc/interpreter/func.txi @ 6933:d09b8a5d09e2
[project @ 2007-09-28 10:59:51 by dbateman]
author | dbateman |
---|---|
date | Fri, 28 Sep 2007 10:59:51 +0000 |
parents | d5bf6be68c87 |
children | 8b0cfeb06365 |
comparison
equal
deleted
inserted
replaced
6932:8065a1bc0358 | 6933:d09b8a5d09e2 |
---|---|
996 creates a simple unnamed function from the expression @code{x.^2} and | 996 creates a simple unnamed function from the expression @code{x.^2} and |
997 passes it to @code{quad}, | 997 passes it to @code{quad}, |
998 | 998 |
999 @example | 999 @example |
1000 quad (@@(x) sin (x), 0, pi) | 1000 quad (@@(x) sin (x), 0, pi) |
1001 @result{} 1.8391 | 1001 @result{} 2 |
1002 @end example | 1002 @end example |
1003 | 1003 |
1004 @noindent | 1004 @noindent |
1005 wraps another function, and | 1005 wraps another function, and |
1006 | 1006 |