Fit
(Built-in Mathematica Symbol) Fit[data, funs, vars] finds a least-squares fit to a list of data as a linear combination of the functions funs of variables vars.
WeierstrassInvariants[{\[Omega], \[Omega]^\[Prime]}] gives the invariants {g_2, g_3} for Weierstrass elliptic functions corresponding to the half-periods {\[Omega], ...
Mathematica normally assumes that all your variables are global. This means that every time you use a name like x, Mathematica normally assumes that you are referring to the ...
Mathematica has a general mechanism for handling messages generated during computations. Many built-in Mathematica functions use this mechanism to produce error and warning ...
There are many situations where one wants to find a formula that best fits a given set of data. One way to do this in Mathematica is to use Fit. Basic linear fitting. Here is ...
Definitions such as f[x_]=x^2 specify values for functions. Sometimes, however, you need to specify general properties of functions, without necessarily giving explicit ...
The functional and list-oriented characteristics of the core Mathematica language allow Mathematica to provide immediate built-in data parallelism, automatically distributing ...
HypergeometricU[a, b, z] is the confluent hypergeometric function U(a, b, z).
ArgMax
(Built-in Mathematica Symbol) ArgMax[f, x] gives a position x_max at which f is maximized.ArgMax[f, {x, y, ...}] gives a position {x_max, y_max, ...} at which f is maximized.ArgMax[{f, cons}, {x, y, ...}] ...
An expression like x^2+2x-7==0 represents an equation in Mathematica. You will often need to solve equations like this, to find out for what values of x they are true. This ...