When you execute a command like NotebookWrite[obj,data] the actual operation of inserting data into your notebook is performed in the front end. Normally, however, the kernel ...
This gives a result for the integral of x^n that is valid for almost all values of n. For the special case of x^-1, however, the correct result is different. The overall goal ...
LinearProgramming[c, m, b] finds a vector x that minimizes the quantity c.x subject to the constraints m.x >= b and x >= 0. LinearProgramming[c, m, {{b_1, s_1}, {b_2, s_2}, ...
GaussianMatrix[r] gives a matrix that corresponds to a Gaussian kernel of radius r. GaussianMatrix[{r, \[Sigma]}] gives a matrix corresponding to a Gaussian kernel with ...
Mathematica provides a compact way of representing boxes in terms of strings. This is particularly convenient when you want to import or export specifications of boxes as ...
IntegerDigits[n] gives a list of the decimal digits in the integer n. IntegerDigits[n, b] gives a list of the base b digits in the integer n. IntegerDigits[n, b, len] pads ...
GraphUnion[g_1, g_2, ...] constructs the union of graphs g_1, g_2, and so forth. GraphUnion[n, g] constructs n copies of graph g, for any nonnegative integer n.
Constructing Lists Manipulating Lists by Their Indices Nested Lists
Assuming[assum, expr] evaluates expr with assum appended to $Assumptions, so that assum is included in the default assumptions used by functions such as Refine, Simplify, and ...
MultipleListPlot is replaced by ListPlot and ListLinePlot, which now accept multiple sets of data. Dashing[{Dot,Dash,LongDash}] is replaced with ...