<< macr2lst Advanced functions macro >>

Scilab Help >> Advanced functions > macr2tree

macr2tree

function to tree conversion

Calling Sequence

t=macr2tree(function_name)

Arguments

function_name

a Scilab macro

t

a Scilab "tree"

Description

This primitive converts a compiled Scilab function function_name into a tree (nested tlists) which codes the internal representation of the function. For use with tree2code.

Examples

tree=macr2tree(cosh);
txt=tree2code(tree,%T);
write(%io(2),txt,'(a)');

See Also


Report an issue
<< macr2lst Advanced functions macro >>