FindArgMax[f, x] gives the position x_max of a local maximum of f.FindArgMax[f, {x, x_0}] gives the position x_max of a local maximum of f, found by a search starting from ...
FindMaxValue[f, x] gives the value at a local maximum of f.FindMaxValue[f, {x, x_0}] gives the value at a local maximum of f, found by a search starting from the point x = ...
All the test problems presented in [MGH81] have been coded into Mathematica in the Optimization`UnconstrainedProblems` package. A data structure is used so that the problems ...
GraphicsGroup[{g_1, g_2, ...}] represents a collection of graphics objects grouped together for purposes of interactive selection in a notebook.
MorphologicalPerimeter[image] picks out the morphological perimeter of regions of foreground in image.MorphologicalPerimeter[image, t] treats values above t as foreground.
FindArgMin[f, x] gives the position x_min of a local minimum of f.FindArgMin[f, {x, x_0}] gives the position x_min of a local minimum of f, found by a search starting from ...
CUDA is a general C-like programming developed by NVIDIA to program Graphical Processing Units (GPUs). CUDALink provides an easy interface to program the GPU by removing many ...
KarhunenLoeveDecomposition[{a_1, a_2, ...}] gives the Karhunen\[Dash]Loeve transform {b_1, b_2, ...} of the numerical arrays {a_1, a_2, ...} and the transformation matrix m, ...
NestWhileList[f, expr, test] generates a list of the results of applying f repeatedly, starting with expr, and continuing until applying test to the result no longer yields ...
The Mathematica compiler generates a CompiledFunction expression that contains a sequence of simple instructions for evaluating a Mathematica computation. The compiled ...