Numerical Functions
Functions relating real numbers and integers.
Extracting integer and fractional parts.
IntegerPart[x] and
FractionalPart[x] can be thought of as extracting digits to the left and right of the decimal point.
Round[x] is often used for forcing numbers that are close to integers to be exactly integers.
Floor[x] and
Ceiling[x] often arise in working out how many elements there will be in sequences of numbers with non-integer spacings.
| Sign[x] | 1 for x>0, -1 for x<0 |
| UnitStep[x] | 1 for x≥0, 0 for x<0 |
| Abs[x] | absolute value x of x |
| Clip[x] | x clipped to be between -1 and + 1 |
| Rescale[x,{xmin,xmax}] | x rescaled to run from 0 to 1 |
| Max[x1,x2,...] or Max[{x1,x2,...},...] |
| the maximum of x1, x2, ... |
| Min[x1,x2,...] or Min[{x1,x2,...},...] |
| the minimum of x1, x2, ... |
Numerical functions of real variables.
| x+Iy | the complex number x+iy |
| Re[z] | the real part Re z |
| Im[z] | the imaginary part Im z |
| Conjugate[z] | the complex conjugate z* or |
| Abs[z] | the absolute value z |
| Arg[z] | the argument such that z= z ei |
Numerical functions of complex variables.