changeset 6929:d5bf6be68c87

[project @ 2007-09-28 09:21:40 by dbateman] ChangeLog
author dbateman
date Fri, 28 Sep 2007 09:21:40 +0000
parents 20dac48f4d8d
children 01841899e0f9
files doc/interpreter/func.txi
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/func.txi	Wed Sep 26 21:55:05 2007 +0000
+++ b/doc/interpreter/func.txi	Fri Sep 28 09:21:40 2007 +0000
@@ -948,7 +948,7 @@
 @example
 f = @@sin;
 quad (f, 0, pi)
-    @result{} 1.8391
+    @result{} 2
 @end example
 
 You may use @code{feval} to call a function using function handle, or
@@ -1008,7 +1008,7 @@
 a = 1;
 b = 2;
 quad (@@(x) betainc (x, a, b), 0, 0.4)
-    @result{} 1.3867
+    @result{} 0.13867
 @end example
 
 @noindent