LogLinearPlot[f, {x, x_min, x_max}] generates a log-linear plot of f as a function of x from x_min to x_max. LogLinearPlot[{f_1, f_2, ...}, {x, x_min, x_max}] generates ...
NoncentralStudentTDistribution[\[Nu], \[Delta]] represents a noncentral Student t distribution with \[Nu] degrees of freedom and noncentrality parameter \[Delta].
SkewNormalDistribution[\[Mu], \[Sigma], \[Alpha]] represents a skew-normal distribution with shape parameter \[Alpha], location parameter \[Mu], and scale parameter \[Sigma].
Table
(Built-in Mathematica Symbol) Table[expr, {i_max}] generates a list of i_max copies of expr. Table[expr, {i, i_max}] generates a list of the values of expr when i runs from 1 to i_max. Table[expr, {i, ...
TreeForm[expr] displays expr as a tree with different levels at different depths. TreeForm[expr, n] displays expr as a tree only down to level n.
Every new version of Mathematica contains many new features. But careful design from the outset has allowed nearly total compatibility to be maintained between all versions. ...
GraphPlot and GraphPlot3D calculate and plot a visually appealing 2D/3D layout of a graph. The functions are designed to work with very large graphs and handle both connected ...
Product
(Built-in Mathematica Symbol) Product[f, {i, i_max}] evaluates the product \[Product]i = 1 i_max f. Product[f, {i, i_min, i_max}] starts with i = i_min. Product[f, {i, i_min, i_max, di}] uses steps di. ...
This example demonstrates the benefit of supplementing Mathematica functionality with GUIKit user interface elements leveraging existing third-party graph model and editing ...
ArrayRules[SparseArray[...]] gives the rules {pos_1 -> val_1, pos_2 -> val_2, ...} specifying elements in a sparse array. ArrayRules[list] gives rules for SparseArray[list].