1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
@c DO NOT EDIT! Generated automatically by munge-texi.pl.
@c Copyright (C) 1996-2013 John W. Eaton
@c
@c This file is part of Octave.
@c
@c Octave is free software; you can redistribute it and/or modify it
@c under the terms of the GNU General Public License as published by the
@c Free Software Foundation; either version 3 of the License, or (at
@c your option) any later version.
@c
@c Octave is distributed in the hope that it will be useful, but WITHOUT
@c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
@c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
@c for more details.
@c
@c You should have received a copy of the GNU General Public License
@c along with Octave; see the file COPYING. If not, see
@c <http://www.gnu.org/licenses/>.
@node Evaluation
@chapter Evaluation
Normally, you evaluate expressions simply by typing them at the Octave
prompt, or by asking Octave to interpret commands that you have saved in
a file.
Sometimes, you may find it necessary to evaluate an expression that has
been computed and stored in a string, which is exactly what the
@code{eval} function lets you do.
@c eval libinterp/parse-tree/oct-parse.cc
@anchor{XREFeval}
@deftypefn {Built-in Function} {} eval (@var{try})
@deftypefnx {Built-in Function} {} eval (@var{try}, @var{catch})
Parse the string @var{try} and evaluate it as if it were an Octave
program. If that fails, evaluate the optional string @var{catch}.
The string @var{try} is evaluated in the current context,
so any results remain available after @code{eval} returns.
The following example creates the variable @var{A} with the approximate
value of 3.1416 in the current workspace.
@example
eval ("A = acos(-1);");
@end example
If an error occurs during the evaluation of @var{try} then the @var{catch}
string is evaluated, as the following example shows:
@example
@group
eval ('error ("This is a bad example");',
'printf ("This error occurred:\n%s\n", lasterr ());');
@print{} This error occurred:
This is a bad example
@end group
@end example
Programming Note: if you are only using @code{eval} as an error-capturing
mechanism, rather than for the execution of arbitrary code strings,
Consider using try/catch blocks or unwind_protect/unwind_protect_cleanup
blocks instead. These techniques have higher performance and don't introduce
the security considerations that the evaluation of arbitrary code does.
@seealso{@ref{XREFevalin,,evalin}}
@end deftypefn
@menu
* Calling a Function by its Name::
* Evaluation in a Different Context::
@end menu
@node Calling a Function by its Name
@section Calling a Function by its Name
The @code{feval} function allows you to call a function from a string
containing its name. This is useful when writing a function that needs to
call user-supplied functions. The @code{feval} function takes the name
of the function to call as its first argument, and the remaining
arguments are given to the function.
The following example is a simple-minded function using @code{feval}
that finds the root of a user-supplied function of one variable using
Newton's method.
@example
function result = newtroot (fname, x)
# usage: newtroot (fname, x)
#
# fname : a string naming a function f(x).
# x : initial guess
delta = tol = sqrt (eps);
maxit = 200;
fx = feval (fname, x);
for i = 1:maxit
if (abs (fx) < tol)
result = x;
return;
else
fx_new = feval (fname, x + delta);
deriv = (fx_new - fx) / delta;
x = x - fx / deriv;
fx = fx_new;
endif
endfor
result = x;
endfunction
@end example
Note that this is only meant to be an example of calling user-supplied
functions and should not be taken too seriously. In addition to using a
more robust algorithm, any serious code would check the number and type
of all the arguments, ensure that the supplied function really was a
function, etc. @xref{Predicates for Numeric Objects},
for a list of predicates for numeric objects, and @pxref{Status of
Variables}, for a description of the @code{exist} function.
@c feval libinterp/parse-tree/oct-parse.cc
@anchor{XREFfeval}
@deftypefn {Built-in Function} {} feval (@var{name}, @dots{})
Evaluate the function named @var{name}. Any arguments after the first
are passed as inputs to the named function. For example,
@example
@group
feval ("acos", -1)
@result{} 3.1416
@end group
@end example
@noindent
calls the function @code{acos} with the argument @samp{-1}.
The function @code{feval} can also be used with function handles of
any sort (@pxref{Function Handles}). Historically, @code{feval} was
the only way to call user-supplied functions in strings, but
function handles are now preferred due to the cleaner syntax they
offer. For example,
@example
@group
@var{f} = @@exp;
feval (@var{f}, 1)
@result{} 2.7183
@var{f} (1)
@result{} 2.7183
@end group
@end example
@noindent
are equivalent ways to call the function referred to by @var{f}. If it
cannot be predicted beforehand whether @var{f} is a function handle,
function name in a string, or inline function then @code{feval} can be used
instead.
@end deftypefn
A similar function @code{run} exists for calling user script files, that
are not necessarily on the user path
@c run scripts/miscellaneous/run.m
@anchor{XREFrun}
@deftypefn {Command} {} run @var{script}
@deftypefnx {Function File} {} run ("@var{script}")
Run @var{script} in the current workspace.
Scripts which reside in directories specified in Octave's load
path, and which end with the extension @file{".m"}, can be run simply by
typing their name. For scripts not located on the load path, use @code{run}.
The file name @var{script} can be a bare, fully qualified, or relative
filename and with or without a file extension. If no extension is specified,
Octave will first search for a script with the @file{".m"} extension before
falling back to the script name without an extension.
Implementation Note: If @var{script} includes a path component, then
@code{run} first changes the directory to the directory where @var{script}
is found. @code{run} then executes the script, and returns to the original
directory.
@seealso{@ref{XREFpath,,path}, @ref{XREFaddpath,,addpath}, @ref{XREFsource,,source}}
@end deftypefn
@node Evaluation in a Different Context
@section Evaluation in a Different Context
Before you evaluate an expression you need to substitute
the values of the variables used in the expression. These
are stored in the symbol table. Whenever the interpreter
starts a new function it saves the current symbol table
and creates a new one, initializing it with the list of
function parameters and a couple of predefined variables
such as @code{nargin}. Expressions inside the function use the
new symbol table.
Sometimes you want to write a function so that when you
call it, it modifies variables in your own context. This
allows you to use a pass-by-name style of function,
which is similar to using a pointer in programming languages such
as C.
Consider how you might write @code{save} and @code{load} as
m-files. For example:
@example
@group
function create_data
x = linspace (0, 10, 10);
y = sin (x);
save mydata x y
endfunction
@end group
@end example
With @code{evalin}, you could write @code{save} as follows:
@example
@group
function save (file, name1, name2)
f = open_save_file (file);
save_var (f, name1, evalin ("caller", name1));
save_var (f, name2, evalin ("caller", name2));
endfunction
@end group
@end example
@noindent
Here, @samp{caller} is the @code{create_data} function and @code{name1}
is the string @qcode{"x"}, which evaluates simply as the value of @code{x}.
You later want to load the values back from @code{mydata}
in a different context:
@example
@group
function process_data
load mydata
@dots{} do work @dots{}
endfunction
@end group
@end example
@noindent
With @code{assignin}, you could write @code{load} as follows:
@example
@group
function load (file)
f = open_load_file (file);
[name, val] = load_var (f);
assignin ("caller", name, val);
[name, val] = load_var (f);
assignin ("caller", name, val);
endfunction
@end group
@end example
@noindent
Here, @samp{caller} is the @code{process_data} function.
You can set and use variables at the command prompt
using the context @samp{base} rather than @samp{caller}.
These functions are rarely used in practice. One
example is the @code{fail (@samp{code}, @samp{pattern})} function
which evaluates @samp{code} in the caller's context and
checks that the error message it produces matches
the given pattern. Other examples such as @code{save} and @code{load}
are written in C++ where all Octave variables
are in the @samp{caller} context and @code{evalin} is not needed.
@c evalin libinterp/parse-tree/oct-parse.cc
@anchor{XREFevalin}
@deftypefn {Built-in Function} {} evalin (@var{context}, @var{try})
@deftypefnx {Built-in Function} {} evalin (@var{context}, @var{try}, @var{catch})
Like @code{eval}, except that the expressions are evaluated in the
context @var{context}, which may be either @qcode{"caller"} or
@qcode{"base"}.
@seealso{@ref{XREFeval,,eval}, @ref{XREFassignin,,assignin}}
@end deftypefn
@c assignin libinterp/parse-tree/oct-parse.cc
@anchor{XREFassignin}
@deftypefn {Built-in Function} {} assignin (@var{context}, @var{varname}, @var{value})
Assign @var{value} to @var{varname} in context @var{context}, which
may be either @qcode{"base"} or @qcode{"caller"}.
@seealso{@ref{XREFevalin,,evalin}}
@end deftypefn
|