Mathematica efficiently implements state-of-the-art data classification algorithms, allowing you to visualize distributions, search for nearest neighbors, and do cluster ...
The numerical method of lines is a technique for solving partial differential equations by discretizing in all but one dimension, and then integrating the semi-discrete ...
Introduction to MathLink How MathLink Is Used Installing Existing MathLink-Compatible Programs
If you have a function defined in an external program, then what you need to do in order to make it possible to call the function from within Mathematica is to add ...
MathLink allows you to exchange data of any type with external programs. For more common types of data, you simply need to give appropriate :ArgumentTypes: or :ReturnType: ...
LiftingWaveletTransform[data] gives the lifting wavelet transform (LWT) of an array of data.LiftingWaveletTransform[data, wave] gives the lifting wavelet transform using the ...
Apply
(Built-in Mathematica Symbol) Apply[f, expr] or f @@ expr replaces the head of expr by f. Apply[f, expr, {1}] or f @@@ expr replaces heads at level 1 of expr by f.Apply[f, expr, levelspec] replaces heads ...
RandomPrime[{i_min, i_max}] gives a pseudorandom prime number in the range i_min to i_max.RandomPrime[i_max] gives a pseudorandom prime number in the range 2 to ...
Cases
(Built-in Mathematica Symbol) Cases[{e_1, e_2, ...}, pattern] gives a list of the e_i that match the pattern. Cases[{e_1, ...}, pattern -> rhs] gives a list of the values of rhs corresponding to the e_i ...
PrimePowerQ[expr] yields True if expr is a power of a prime number, and yields False otherwise.