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 ...
If you have an equation like 2x==0, it is perfectly clear that the only possible solution is x->0. However, if you have an equation like ax==0, things are not so clear. If a ...
Mathematica provides various options for labeling three-dimensional graphics. Some of these options are directly analogous to those for two-dimensional graphics, discussed in ...
Searching for local minima and maxima. This finds the value of x which minimizes Γ(x), starting at x2. The last element of the list gives the value at which the minimum is ...
When you generate a very large output expression in Mathematica, you often do not want to see the whole expression at once. Rather, you would first like to get an idea of the ...
If you represent the n^th term in a sequence as a[n], you can use a recurrence equation to specify how it is related to other terms in the sequence. RSolve takes recurrence ...
MathLink connections between Mathematica sessions. This starts up a link on port number 8000. This connects to the link on port 8000.
CUDADot[vec 1, vec 2] gives the dot product of vec_1 and vec_2.CUDADot[mat, vec] gives the matrix-vector product of mat and vec.CUDADot[mat_1, mat_2] gives the matrix-matrix ...
CUDAFoldList[f, x, {a, b, ...}] gives {x, f[x, a], f[f[x, a], b], ...}.
CUDAFunction[args] represents a function loaded using CUDAFunctionLoad.