compfile SciMax Toolbox compile_file

SciMax Toolbox >> compile

compile

Maxima Function

Calling Sequence

compile (f_1, ..., f_n)
compile(functions)
compile(all)

Description

Translates Maxima functions f_1, ..., f_n into Lisp, evaluates the Lisp translations, and calls the Lisp function COMPILE on each translated function. compile returns a list of the names of the compiled functions.

compile (all) or compile (functions) compiles all user-defined functions.

compile quotes its arguments; the quote-quote operator '@w' defeats quotation.

compfile SciMax Toolbox compile_file