OpenAppend["file"] opens a file to append output to it, and returns an OutputStream object.
PlotRangePadding is an option for graphics functions that specifies how much further axes etc. should extend beyond the range of coordinates specified by PlotRange.
SignificanceLevel is an option to VarianceTest and similar functions that controls cutoffs for diagnostic tests as well as test conclusions.
VertexLabeling is an option for GraphPlot and related functions which specifies whether labeling should be included by default for vertices in graphs.
ViewAngle is an option for Graphics3D and related functions which gives the opening half-angle for a simulated camera used to view the three-dimensional scene.
$Assumptions is the default setting for the Assumptions option used in such functions as Simplify, Refine, and Integrate.
$CharacterEncoding specifies the default raw character encoding to use for input and output functions.
When you write a program in Mathematica, you should always try to set it up so that its parts are as independent as possible. In this way, the program will be easier for you ...
Converting between strings and lists of characters. This gives a list of the characters in the string. You can apply standard list manipulation operations to this list.
Steps in the operation of Mathematica. When you type something like x^2 what Mathematica at first sees is just the string of characters x, ^, 2. But with the usual way that ...