Man Scilab

macr2tree
Scilab Function

macr2tree - function to tree conversion

Calling Sequence

t=macr2tree(function-name)

Parameters

Description

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

Examples


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

See Also

tree2code ,  

Authors

V.C.

Back