comparison doc/interpreter/eval.txi @ 12578:f5a780d675a1

Clean up operator and function indices in documentation.
author Rik <octave@nomad.inbox5.com>
date Wed, 06 Apr 2011 11:44:21 -0700
parents fd0a3ac60b0e
children 72c96de7a403
comparison
equal deleted inserted replaced
12577:562e40e3d5db 12578:f5a780d675a1
46 The following example is a simple-minded function using @code{feval} 46 The following example is a simple-minded function using @code{feval}
47 that finds the root of a user-supplied function of one variable using 47 that finds the root of a user-supplied function of one variable using
48 Newton's method. 48 Newton's method.
49 49
50 @example 50 @example
51 @cindex Fordyce, A. P.
52 @findex newtroot
53 function result = newtroot (fname, x) 51 function result = newtroot (fname, x)
54 52
55 # usage: newtroot (fname, x) 53 # usage: newtroot (fname, x)
56 # 54 #
57 # fname : a string naming a function f(x). 55 # fname : a string naming a function f(x).