This tutorial documents the XML representation of the user interface definition, GUIKitXML for short. This is a DTD representing the current GUIKit XML definitions. Use the ...
The arithmetic used by Mathematica is a mixture of variable-precision software arithmetic and whatever is provided by the manufacturer of the floating-point hardware (or the ...
Mathematica includes comprehensive support for XML, the meta-markup language developed by the World Wide Web Consortium (W3C) for describing structured documents and data. ...
ParametricPlot3D[{f_x, f_y, f_z}, {u, u_min, u_max}] produces a three-dimensional space curve parametrized by a variable u which runs from u_min to u_max. ...
When fitting models to data, it is often useful to analyze how well the model fits the data and how well the fitting meets the assumptions of the model. For a number of ...
The first step in using a database is making a connection. This part of the tutorial discusses how to do this. If you are just starting to use DatabaseLink, you might want to ...
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 ...
The Mathematica functions Reduce, Resolve, and FindInstance allow you to solve a wide variety of problems that can be expressed in terms of equations and inequalities. The ...
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}, ...] ...
Solve
(Built-in Mathematica Symbol) Solve[expr, vars] attempts to solve the system expr of equations or inequalities for the variables vars. Solve[expr, vars, dom] solves over the domain dom. Common choices of ...