lhs := rhs assigns rhs to be the delayed value of lhs. rhs is maintained in an unevaluated form. When lhs appears, it is replaced by rhs, evaluated afresh each time.
Max
(Built-in Mathematica Symbol) Max[x_1, x_2, ...] yields the numerically largest of the x_i. Max[{x_1, x_2, ...}, {y_1, ...}, ...] yields the largest element of any of the lists.
InverseErfc[s] gives the inverse complementary error function obtained as the solution for z in s = erfc(z).
StringFreeQ["string", patt] yields True if no substring in " string" matches the string expression patt, and yields False otherwise. StringFreeQ["string", {patt_1, patt_2, ...
StringMatchQ["string", patt] tests whether " string" matches the string pattern patt. StringMatchQ["string", RegularExpression["regex"]] tests whether " string" matches the ...
You can ask for information about any object, whether it is built into Mathematica, has been read in from a Mathematica package, or has been introduced by you. Ways to get ...
Mathematica represents vectors as lists, and never needs to distinguish between row and column cases. Vectors in Mathematica can always mix numbers and arbitrary symbolic or ...
Map
(Built-in Mathematica Symbol) Map[f, expr] or f /@ expr applies f to each element on the first level in expr. Map[f, expr, levelspec] applies f to parts of expr specified by levelspec.
StringSplit["string"] splits " string" into a list of substrings separated by whitespace. StringSplit["string", patt] splits into substrings separated by delimiters matching ...
The following is the sequence of steps that Mathematica follows in evaluating an expression like h[e_1,e_2…]. Every time the expression changes, Mathematica effectively ...