Libraries are collections of functions which complement the set of built-in functions and operators of LME, the programming language of SysQuake. To use them, type (or add in the functions block of the SQ files which rely on them) a use command, such as
use stdlib
stdlib is the standard library of general-purpose functions for LME. Functions span from array creation and manipulation to coordinates transform and basic statistics.
stats provides more advanced statistical functions.
classes implements constructors and methods for polynomial and rational functions. With them, you can use standard operator notations such as + or *.
quaternion implements constructors and methods for quaternions, which are similar to complex numbers but with four components.
lti implements constructors and methods for Linear Time-Invariant models, whcih may represent dynamical systems as continuous-time or discrete-time state-space models or transfer functions. With them, you can use standard operator notations such as + or *, array building operators such as [A,B;C,D], connection functions such as parallel or feedback, and much more.