Plugins are dynamic libraries loaded at runtime. They are normally used to provide access to external libraries or applications. Yacas comes with a few plugins, such as the GSL plugin. This chapter contains the documentation generated for each plugin.
This is an example mini-API.
Function AddTwoIntegers(arg1,arg2), calls int add_integers (int arg1, int arg2)
Function AddTwoDoubles(x,y), calls double add_doubles (double x, double y)
Declared struct Bla*
Function CreateBla(arg1,arg2), calls Bla* CreateBla (int arg1, int arg2)
Function BlaSetA(arg1,arg2), calls void BlaSetA (Bla* arg1, int arg2)
Function BlaGetA(arg1), calls int BlaGetA (Bla* arg1)