compare SciMax Toolbox compile

SciMax Toolbox >> compfile

compfile

Maxima Function

Calling Sequence

compfile (filename, f_1, ..., f_n)
compfile(filename,functions)
compfile(filename,all)

Description

Translates Maxima functions into Lisp and writes the translated code into the file filename.

compfile(filename, f_1, ..., f_n) translates the specified functions. compfile(filename, functions) and compfile(filename, all) translate all user-defined functions.

The Lisp translations are not evaluated, nor is the output file processed by the Lisp compiler.

translate creates and evaluates Lisp translations. compile_file translates Maxima into Lisp, and then executes the Lisp compiler.

See also , , and .

compare SciMax Toolbox compile