Slider2D[{x, y}] represents a 2D slider with settings x and y in the range 0 to 1. Slider2D[Dynamic[pt]] takes the setting to be the dynamically updated current value of pt, ...
TeXForm
(Built-in Mathematica Symbol) TeXForm[expr] prints as a TeX version of expr.
Mathematica always allows you to refer to special characters by using names such as ∖[Alpha] or explicit hexadecimal codes such as ∖:03b1. And when Mathematica writes out ...
Code generation from Mathematica involves converting programs written in the Mathematica language into other languages and then supporting them so that they can be executed. ...
Parallel computing in Mathematica is based on launching and controlling multiple Mathematica kernel (worker) processes from within a single master Mathematica, providing a ...
CCast
(SymbolicC Package Symbol) CCast[type, obj] is a symbolic representation of a cast of obj to type.
CDeclare[type, var] is a symbolic representation of a variable declaration.CDeclare[type, {var_1, ...}] declares a number of variables.
CFunction[type, name, args, body] is a symbolic representation of a function definition.CFunction[type, name, args] is a symbolic representation of a function declaration.
COperator[oper, arg_1, ...] is a symbolic representation of an operator.
CPreprocessorIfdef[cond] is a symbolic representation of a preprocessor ifdef conditional.CPreprocessorIfdef[cond, true, false] represents the true and false cases.