Put
(Built-in Mathematica Symbol) expr >> filename writes expr to a file. Put[expr_1, expr_2, ..., " filename"] writes a sequence of expressions expr_i to a file. Put["filename "] creates an empty file with ...
Rest
(Built-in Mathematica Symbol) Rest[expr] gives expr with the first element removed.
SuperscriptBox[x, y] is the low-level box representation for x^y in notebook expressions.
Unique
(Built-in Mathematica Symbol) Unique[] generates a new symbol, whose name is of the form $nnn. Unique[x] generates a new symbol, with a name of the form x$nnn. Unique[{x, y, ...}] generates a list of new ...
We first encountered lists in "Making Lists of Objects" as a way of collecting numbers together. Here, we shall see many different ways to use lists. You will find that lists ...
If you make a definition such as f[x_]:=value, Mathematica will use the value you give for any f function it encounters. In some cases, however, you may want to define a ...
When you create or use Mathematica packages, you will often want to refer to files in a system-independent way. You can use contexts to do this. The basic idea is that on ...
You may have noticed that there are two different ways to make assignments in Mathematica: lhs=rhs and lhs:=rhs. The basic difference between these forms is when the ...
You can use most of the list operations discussed in "Lists" on any kind of Mathematica expression. By using these operations, you can manipulate the structure of expressions ...
Functions for manipulating files. Different operating systems have different commands for manipulating files. Mathematica provides a simple set of file manipulation ...