ImageReflect[image] reverses image by top-bottom mirror reflection. ImageReflect[image, side] reverses image by reflecting it so that the specified side goes to the opposite ...
Longitude[pos] gives the longitude in degrees of a geographic position specified by pos.Longitude[pos, datum] gives the longitude referring to the specified geodetic datum.
Sharpen
(Built-in Mathematica Symbol) Sharpen[image] gives a sharpened version of image.Sharpen[image, r] gives a version of image sharpened over pixel radius r.
StringTrim["string"] trims whitespace from the beginning and end of " string".StringTrim["string", patt] trims substrings matching patt from the beginning and end.
Patterns stand for classes of expressions. They contain pattern objects that represent sets of possible expressions. Pattern objects. When several pattern objects with the ...
MeijerG
(Built-in Mathematica Symbol) MeijerG[{{a_1, ..., a_n}, {a n + 1, ..., a_p}}, {{b_1, ..., b_m}, {b m + 1, ..., b_q}}, z] is the Meijer G function G_p q^m n(z \[VerticalSeparator] {{a_1, ..., a_p}, {b_1, ...
Applying transformation rules. The replacement operator /. (pronounced "slash-dot") applies rules to expressions. You can give a list of rules to apply. Each rule will be ...
ReplacePart[expr, i -> new] yields an expression in which the i\[Null]\[Null]^th part of expr is replaced by new. ReplacePart[expr, {i_1 -> new_1, i_2 -> new_2, ...}] ...
Do
(Built-in Mathematica Symbol) Do[expr, {i_max}] evaluates expr i_max times. Do[expr, {i, i_max}] evaluates expr with the variable i successively taking on the values 1 through i_max (in steps of 1). ...
PadLeft
(Built-in Mathematica Symbol) PadLeft[list, n] makes a list of length n by padding list with zeros on the left. PadLeft[list, n, x] pads by repeating the element x. PadLeft[list, n, {x_1, x_2, ...}] pads ...