Various scripts to be used with the Maxima computer algebra system
Go to file
Thomas Baruchel 40fc24500d Update 2022-09-15 19:56:45 +02:00
LICENSE Initial commit 2022-09-14 14:51:58 +00:00
README.md Update 2022-09-14 17:54:10 +02:00
carleman.lisp Update 2022-09-15 19:56:45 +02:00
convolution.lisp Update 2022-09-14 17:54:10 +02:00
pslq.mac Update 2022-09-14 17:54:10 +02:00
rinterp.mac Update 2022-09-14 17:54:10 +02:00
thiele.mac Update 2022-09-14 17:54:10 +02:00

README.md

Numerical routines for Maxima

This repository contains various scripts to be used with the (https://maxima.sourceforge.io)[Maxima] computer algebra system. The files are written either in Lisp or in Maxima's own scripting language.

Each script contains some documentation in the initial comments at the top of the file.

Each file can be loaded with load("myscript.mac"); or load("myscript.lisp");

You can also put some of these files in your ~/.maxima/ directory, which will make you able to load them from any current location (even if the required file is not in your current directory).

Files written in Lisp can also be compiled; just type:

:lisp (compile-file "myscript.lisp");

then look for the newly compiled file with a name ending in .o or .fasl (according to the Lisp implementation used by your version of Maxima) in your current directory and load it instead of the original one.