Introduction to MathLink How MathLink Is Used Installing Existing MathLink-Compatible Programs
The following are some issues and considerations to be aware of when using the Notation Package and/or designing notations. It is intrinsically difficult to debug something ...
GainPhaseMargins[sys] gives the gain and phase margins of the linear time-invariant system sys.
Xor
(Built-in Mathematica Symbol) Xor[e_1, e_2, ...] is the logical XOR (exclusive OR) function. It gives True if an odd number of the e_i are True, and the rest are False. It gives False if an even number of ...
Different kinds of vector and matrix multiplication. This multiplies each element of the vector by the scalar k. The "dot" operator gives the scalar product of two vectors.
CUDASort[vec] sorts the input vector.CUDASort[mem] sorts CUDAMemory in place.CUDASort[vec, op] sorts input with respect to the ordering function op.
This package provides functions for the generation of standard waveforms and waveforms with user-specified spectra, the synthesis of amplitude and frequency modulated ...
The way modules work in Mathematica is basically very simple. Every time any module is used, a new symbol is created to represent each of its local variables. The new symbol ...
DSolve can be used for finding the general solution to a differential equation or system of differential equations. The general solution gives information about the structure ...
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, ...