LinearSolve[m, b] finds an x which solves the matrix equation m.x == b. LinearSolve[m] generates a LinearSolveFunction[...] which can be applied repeatedly to different b.
RowReduce[m] gives the row-reduced form of the matrix m.
Simplify[expr] performs a sequence of algebraic and other transformations on expr, and returns the simplest form it finds. Simplify[expr, assum] does simplification using ...
SortBy
(Built-in Mathematica Symbol) SortBy[list, f] sorts the elements of list in the order defined by applying f to each of them.
SuzukiDistribution[\[Mu], \[Nu]] represents the Suzuki distribution with shape parameters \[Mu] and \[Nu].
The leading term of a polynomial can be chosen in many different ways. For multivariate polynomials, sorting by the total degree of the monomials is often useful. Different ...
Mathematica has three functions for generating pseudorandom numbers that are distributed uniformly over a range of values. Pseudorandom number generation. Generating tables ...
An important feature of string manipulation functions like StringReplace is that they handle not only literal strings but also patterns for collections of strings. This ...
The basis for a nonlinear conjugate gradient method is to effectively apply the linear conjugate gradient method, where the residual is replaced by the gradient. A model ...
NExpectation[expr, x \[Distributed] dist] gives the numerical expectation of expr under the assumption that x follows the probability distribution dist.NExpectation[expr, ...