Download Function Reference Manual - DSP Development Corporation

Transcript
Code
Operator
Function
Description
22
23
24
25
26
27
BITXOR
~
MAKECART
MAKEPOLAR
MAX
MIN
BITXOR
BITCOMP
MAKECART
MAKEPOLAR
MAX
MIN
bit exclusive or
bit complement
convert to cartesian
convert to polar
maximum
minimum
Returns:
Table with one column and as many rows as the input table.
Example:
W1: {{1, 2},
{2, 3},
{3, 4}}
W2: rowreduce(W1, "*")
W2 == {2,
6,
12}
W3: rowreduce(W1, 3)
W3 == {2,
6,
12}
Remarks:
Binary operators include the arithmetic and logical operators. The "Exclusive OR"
operator is represented by the string "XOR".
The function also accepts an explicit function code instead of an operator string. Either an
operator string or function code must be supplied.
See Also:
&& || ! AND OR NOT XOR (Logical Operators)
COLREDUCE
INNERPROD
INTERPOSE
OUTERPROD
REDUCE
633