math
(Mathematica System Program) math options starts the Mathematica kernel in Unix and Linux.
NotebookInformation[] gives a list of properties of the current evaluation notebook.NotebookInformation[notebook] gives a list of properties for the specified notebook.
$CUDALinkLibraryPath is the directory that contains the CUDALink libraries for the system.
$DatabaseLinkDirectory gives the directory where DatabaseLink is installed.
SHP
(Mathematica Import/Export Format) ESRI shape file format. Common GIS file format. Used for archiving and exchanging cartographic and geospatial information. Stores the geometry and data of map features. SHP ...
TIGER
(Mathematica Import/Export Format) TIGER/Line GIS file format. U.S. Census Bureau file format. Used for archiving cartographic information and data. Stores geometric as well as numerical and textual ...
Nand
(Built-in Mathematica Symbol) Nand[e_1, e_2, ...] is the logical NAND function. It evaluates its arguments in order, giving True immediately if any of them are False, and False if they are all True.
Nor
(Built-in Mathematica Symbol) Nor[e_1, e_2, ...] is the logical NOR function. It evaluates its arguments in order, giving False immediately if any of them are True, and True if they are all False.
Temporary is an attribute assigned to symbols which are created as local variables by Module.
Particularly when you write procedural programs in Mathematica, you will often need to modify the value of a particular variable repeatedly. You can always do this by ...