Sinh
(Built-in Mathematica Symbol) Sinh[z] gives the hyperbolic sine of z.
Tanh
(Built-in Mathematica Symbol) Tanh[z] gives the hyperbolic tangent of z.
When you manipulate power series, it is sometimes convenient to think of the series as representing functions, which you can, for example, compose or invert. Composition and ...
You can define wavelets to plug into the wavelet analysis framework by using the correct template. A wavelet wave is of the form wfam[args], where wfam is the symbol that ...
NIntegrate[f, {x, x_min, x_max}] gives a numerical approximation to the integral \[Integral]_x_min^x_max\ f\ d \ x. NIntegrate[f, {x, x_min, x_max}, {y, y_min, y_max}, ...] ...
FixedPoint[f, expr] starts with expr, then applies f repeatedly until the result no longer changes.
Inner
(Built-in Mathematica Symbol) Inner[f, list_1, list_2, g] is a generalization of Dot in which f plays the role of multiplication and g of addition.
Min
(Built-in Mathematica Symbol) Min[x_1, x_2, ...] yields the numerically smallest of the x_i. Min[{x_1, x_2, ...}, {y_1, ...}, ...] yields the smallest element of any of the lists.
MatrixPlot[m] generates a plot that gives a visual representation of the values of elements in a matrix.
Because GPUs are SIMD machines, to exploit CUDA's potential you must pose the problem in an SIMD manner. Computation that can be partitioned in such a way that each thread ...