BaseForm[expr, n] prints with the numbers in expr given in base n.
GeometricTransformation[g, tfun] represents the result of applying the transformation function tfun to the geometric objects corresponding to the primitives ...
MathMLForm[expr] prints as a MathML form of expr.
Csc
(Built-in Mathematica Symbol) Csc[z] gives the cosecant of z.
FixedPointList[f, expr] generates a list giving the results of applying f repeatedly, starting with expr, until the results no longer change.
StandardForm[expr] prints as the standard Mathematica two-dimensional representation of expr.
StringCases["string", patt] gives a list of the substrings in " string" that match the string expression patt. StringCases["string", lhs -> rhs] gives a list of the values of ...
Thread
(Built-in Mathematica Symbol) Thread[f[args]] "threads" f over any lists that appear in args. Thread[f[args], h] threads f over any objects with head h that appear in args. Thread[f[args], h, n] threads f ...
A delay differential equation is a differential equation where the time derivatives at the current time depend on the solution and possibly its derivatives at previous times: ...
Function[body] or body & is a pure function. The formal parameters are # (or #1), #2, etc. Function[x, body] is a pure function with a single formal parameter x. ...