With
(Built-in Mathematica Symbol) With[{x = x_0, y = y_0, ...}, expr] specifies that in expr occurrences of the symbols x, y, ... should be replaced by x_0, y_0, ....
Xnor
(Built-in Mathematica Symbol) Xnor[e_1, e_2, ...] is the logical XNOR (not XOR) function. It gives True if an even number of the e_i are True, and the rest are False. It gives False if an odd number of ...
Xor
(Built-in Mathematica Symbol) Xor[e_1, e_2, ...] is the logical XOR (exclusive OR) function. It gives True if an odd number of the e_i are True, and the rest are False. It gives False if an even number of ...
TetGenGetRegions[expr] returns the regions in a TetGen expression.
OpenCLInformation[] gives all information about OpenCL platforms and devices on the system.OpenCLInformation[platform] gives information on OpenCL platform and about its ...
Attributes::attsl
Attributes::attnf
Attributes::locked ClearAll::locked Protect::locked SetOptions::locked
Recall that connections to remote kernels, as opened by LaunchKernels, are represented as kernel objects. See the chapter Connection Methods for details. The commands in this ...
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.