Mathematica usually works by taking whatever input you give, and then processing it. Sometimes, however, you may want to have a program you write explicitly request more ...
If you want to make use of Mathematica output in an external file such as a program or document, you will often find it useful to "splice" the output automatically into the ...
SeriesCoefficient[series, n] finds the coefficient of the n\[Null]\[Null]^th-order term in a power series in the form generated by Series. SeriesCoefficient[f, {x, x_0, n}] ...
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}, ...] ...
Casoratian[{y_1, y_2, ...}, n] gives the Casoratian determinant for the sequences y_1, y_2, ... depending on n.Casoratian[eqn, y, n] gives the Casoratian determinant for the ...
Legacy
(Parallel Package Tutorial) The parallel computing features of Mathematica entirely replace the Parallel Computing Toolkit that was available up to Mathematica Version 6. As stated in the Introduction, ...
For minimization problems for which the objective function is a sum of squares, it is often advantageous to use the special structure of the problem. Time and effort can be ...
Sum
(Built-in Mathematica Symbol) Sum[f, {i, i_max}] evaluates the sum \[Sum]i = 1 i_max f. Sum[f, {i, i_min, i_max}] starts with i = i_min. Sum[f, {i, i_min, i_max, di}] uses steps d i. Sum[f, {i, {i_1, i_2, ...
The release of Mathematica 6 in May 2007 represented a revolution in the development of Mathematica. Building on this revolution, Mathematica 7 not only greatly broadens and ...
CCodeStringGenerate[cfun, name, opts] generates C code from the compiled function cfun using the name as the exported function name.