Yacas allows you to configure a few things at startup. The file ~/.yacasrc will be executed when Yacas is run. The followinf functions can be useful when used in the ~/.yacasrc file.
In> DefaultDirectory("/home/user/myscripts/");
Out> True;
|
In> Taylor(x,0,5)Sin(x)
Out> x-x^3/6+x^5/120;
In> PrettyPrinter("PrettyForm");
True
Out>
In> Taylor(x,0,5)Sin(x)
3 5
x x
x - -- + ---
6 120
Out>
In> PrettyPrinter();
Out> True;
In> Taylor(x,0,5)Sin(x)
Out> x-x^3/6+x^5/120;
|
Help(_f) <-- SystemCall("netscape ":FindFile("documentation/ref.html"):"#":f);
Help() := SystemCall("netscape ":FindFile("documentation/books.html"));
|
In> HistorySize(200) Out> True; In> quit |