Arg
(Built-in Mathematica Symbol) Arg[z] gives the argument of the complex number z.
Array
(Built-in Mathematica Symbol) Array[f, n] generates a list of length n, with elements f[i]. Array[f, {n_1, n_2, ...}] generates an n_1*n_2*... array of nested lists, with elements f[i_1, i_2, ...]. ...
Cone
(Built-in Mathematica Symbol) Cone[{{x_1, y_1, z_1}, {x_2, y_2, z_2}}, r] represents a cone with a base of radius r centered at (x_1, y_1, z_1) and a tip at (x_2, y_2, z_2). Cone[{{x_1, y_1, z_1}, {x_2, ...
Conjugate[z] or z\[Conjugate] gives the complex conjugate of the complex number z.
Cycles
(Built-in Mathematica Symbol) Cycles[{cyc_1, cyc_2, ...}] represents a permutation with disjoint cycles cyc_i.
DictionaryLookup[patt] finds all words in an English dictionary that match the string pattern patt.DictionaryLookup[patt, n] gives only the first n words ...
DiscreteLQRegulatorGains[ss, {q, r}, \[Tau]] gives the optimal discrete-time state feedback gain matrix with sampling period \[Tau] for the continuous-time StateSpaceModel ...
DiscreteWaveletData[{wind_1 -> coef_1, ...}, wave, wtrans] yields a discrete wavelet data object with wavelet coefficients coef_i corresponding to wavelet index wind_i, ...
DiscreteWaveletPacketTransform[data] gives the discrete wavelet packet transform (DWPT) of an array of data.DiscreteWaveletPacketTransform[data, wave] gives the discrete ...
Do
(Built-in Mathematica Symbol) Do[expr, {i_max}] evaluates expr i_max times. Do[expr, {i, i_max}] evaluates expr with the variable i successively taking on the values 1 through i_max (in steps of 1). ...