Download Function Reference Manual - DSP Development Corporation

Transcript
The built-in MAX function is equivalent to MAXVAL.
See VMAX to compare more than two values.
See Also:
COLMAX
MAX
MIN
MINVAL
VMAX
MDIV
Purpose:
Divides one matrix by another.
Format:
MDIV(matrix1, matrix2)
matrix1 - A non-singular square matrix.
matrix2 - Any matrix.
Returns:
A matrix.
Example:
W1: {{1, 4, 7},
{2, 5, 8},
{3, 6, 0}}
W2: {1,
2,
3}
W3: W1 *^ W2
{30,
36,
15}
482