FindRoot[f, {x, x_0}] searches for a numerical root of f, starting from the point x = x_0.FindRoot[lhs == rhs, {x, x_0}] searches for a numerical solution to the equation lhs ...
ImageDeconvolve[image, ker] gives a deconvolution of image using kernel ker.
Converting to and from character codes. Mathematica assigns every character that can appear in a string a unique character code. This code is used internally as a way to ...
Unless f is a flat function, a pattern like f[x_,y_] stands only for instances of the function with exactly two arguments. Sometimes you need to set up patterns that can ...
To run Mathematica from within an external program requires making use of many general features of MathLink. The first issue is how to establish a MathLink connection to ...
When you install a MathLink-compatible external program using Install, the program is set up to behave somewhat like a simplified Mathematica kernel. Every time you call a ...
TetGen is a quality tetrahedral mesh generator and a three-dimensional Delaunay triangulator. TetGenLink is a Mathematica application that uses Wolfram LibraryLink to link to ...
The World Wide Web is increasingly being used for communication between applications. The programmatic interfaces made available over the web for application-to-application ...
VertexTextureCoordinates is an option for graphics primitives that specifies the texture coordinates to assign to vertices.
Many programs you write will involve operations that need to be iterated several times. Nest and NestList are powerful constructs for doing this. Applying functions of one ...