And
(Built-in Mathematica Symbol) e_1 && e_2 && ... is the logical AND function. It evaluates its arguments in order, giving False immediately if any of them are False, and True if they are all True.
Or
(Built-in Mathematica Symbol) e_1 || e_2 || ... is the logical OR function. It evaluates its arguments in order, giving True immediately if any of them are True, and False if they are all False.
ParallelArray[f, n] generates in parallel a list of length n, with elements f[i], evaluated.ParallelArray[f, {n_1, n_2, ...}] generates in parallel an n_1*n_2*... array of ...
Radon
(Built-in Mathematica Symbol) Radon[image] gives an image representing the discrete Radon transform of image.Radon[image, {w, h}] specifies the width w and the height h of the resulting image.Radon[image, ...
You can enable logging in two ways. The log file records messages as they occur, building up a detailed record of license activity over a period of time. Logging supports ...
Pure functions. When you use functional operations such as Nest and Map, you always have to specify a function to apply. In all the examples above, we have used the "name" of ...
MathLink connections between Mathematica sessions. This starts up a link on port number 8000. This connects to the link on port 8000.
You can import XML data into Mathematica using the standard Import function, which has the following syntax. Importing files. The first argument specifies the file to be ...
This section is designed to discuss how to make compiled functions run efficiently. It will cover features that make them run faster, as well as problems that can make them ...
ConfigurationPath is a global option that specifies which directories are searched for systemwide configuration information.