Sort
(Built-in Mathematica Symbol) Sort[list] sorts the elements of list into canonical order. Sort[list, p] sorts using the ordering function p.
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 ...
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 ...
BetaDistribution[\[Alpha], \[Beta]] represents a continuous beta distribution with shape parameters \[Alpha] and \[Beta].
EmpiricalDistribution[{x_1, x_2, ...}] represents an empirical distribution based on the data values x_i.EmpiricalDistribution[{{x_1, y_1, ...}, {x_2, y_2, ...}, ...}] ...
The IDA package is part of the SUNDIALS (SUite of Nonlinear and DIfferential/ALgebraic equation Solvers) developed at the Center for Applied Scientific Computing of Lawrence ...
The Mathematica function NIntegrate is a general numerical integrator. It can handle a wide range of one-dimensional and multidimensional integrals. Finding a numerical ...
EstimatedDistribution[data, dist] estimates the parametric distribution dist from data.EstimatedDistribution[data, dist, {{p, p_0}, {q, q_0}, ...}] estimates the parameters ...
Plot
(Built-in Mathematica Symbol) Plot[f, {x, x_min, x_max}] generates a plot of f as a function of x from x_min to x_max. Plot[{f_1, f_2, ...}, {x, x_min, x_max}] plots several functions f_i.
WeibullDistribution[\[Alpha], \[Beta]] represents a Weibull distribution with shape parameter \[Alpha] and scale parameter \[Beta].WeibullDistribution[\[Alpha], \[Beta], ...