DefaultDirectory | add directory to path for Yacas scripts |
PrettyPrinter | set routine to use as pretty-printer |
Help | get documentation for some command |
HistorySize | set size of history file |
DefaultDirectory(path) |
Yacas first tries to load a file from the current directory, and otherwise it tries to load from directories defined with this function, in the order they are defined. Note there will be at least one directory specified at start-up time, defined during compilation. This is the directory Yacas searches for the initialization scripts and standard scripts.
In> DefaultDirectory("/home/user/myscripts/"); Out> True; |
PrettyPrinter(printer) |
Currently implemented prettyprinters are: PrettyForm, TeXForm, Print and DefaultPrint.
In> Taylor(x,0,5)Sin(x) Out> x-x^3/6+x^5/120; In> PrettyPrinter("PrettyForm"); True In> Taylor(x,0,5)Sin(x) 3 5 x x x - -- + --- 6 120 In> PrettyPrinter(); Out> True; In> Taylor(x,0,5)Sin(x) Out> x-x^3/6+x^5/120; |
MaxEvalDepth(n) |
Help() Help(function) |
The function Help is auxiliary and should not be used to actually get online help.
Help(_f) <-- SystemCall("netscape " : FindFile("documentation/ref.html"):"#":f); Help() := SystemCall("netscape " : FindFile("documentation/books.html")); |
HistorySize(n) |
In> HistorySize(200) Out> True; In> quit |