mathml SciMax Toolbox maxevalfl

SciMax Toolbox >> maxevalf

maxevalf

Evaluates a Maxima function

Calling Sequence

y=maxevalf(maxnam,[x_1,[x_2,...]])

Parameters

maxnam

is the name of the Maxima function

x_n

parameters to pass to the function, their types can be int, double, complex, string, sym or polynomial

y

is of type sym

Description

This function is useful to define Scilab functions interfacing Maxima functions.

Examples

Syms(['x' 'y']),maxevalf('diff',sin(x*y),x,2,y,1)
deff('y=maxfun(x)','y=maxevalf(''maxfun'',x)')

Author

See also

mathml SciMax Toolbox maxevalfl