deff — on-line definition of function
deff('[s1,s2,...]=newfunction(e1,e2,....)',text [,opt])
input variables.
output variables.
matrix of character strings
optional character string
function is "compiled" to be more efficient (default)
function is "compiled" and prepared for profiling (see profile)
function is not "compiled"
deff
can be used to define functions from sequences of instructions
written in text strings. The resulting function object has the same proprerties
of any other function defined in a text file and loaded with exec
or exec
.
Quotes in the instructions (delimiting strings or meaning matrix transposition)
have to be doubled to be interpreted correctly (see help quote). This can make
writing up a little awkward.
An option in such cases is to define functions in files as usual, to load them into
Scilab by exec
(with the 'n'
option) and to use
sci2exp
to get a printout of corresponding deff
instructions.