With Mathematica's citation management features, you can annotate and add references to research papers written using Mathematica. These features work in conjunction with the ...
If you make a definition like f[x_]:=x Sin[x], Mathematica will store the expression x Sin[x] in a form that can be evaluated for any x. Then when you give a particular value ...
Whenever Mathematica draws a three-dimensional object, it always effectively puts a cuboidal box around the object. With the default option setting Boxed->True, Mathematica ...
In any interactive session, Mathematica effectively operates in a loop. It waits for your input, processes the input, prints the result, then goes back to waiting for input ...
General issues about the internal implementation of Mathematica are discussed in "The Internals of Mathematica". Given here are brief notes on particular features. These ...
FindFit
(Built-in Mathematica Symbol) FindFit[data, expr, pars, vars] finds numerical values of the parameters pars that make expr give a best fit to data as a function of vars. The data can have the form {{x_1, ...
NonlinearModelFit[{y_1, y_2, ...}, form, {\[Beta]_1, ...}, x] constructs a nonlinear model with structure form that fits the y_i for successive x values 1, 2, ... using the ...
Numerical algorithms for constrained nonlinear optimization can be broadly categorized into gradient-based methods and direct search methods. Gradient search methods use ...
Widget["Table"] represents a table.
Widgets are the basic component of GUIs built with GUIKit. This tutorial discusses some of the basics of widgets and how they work. More detailed information on widgets can ...