mxediv

1. Syntax:

Return Range  mxediv(Range matrix1, Range matrix2)

Description:

Divides elements of matrix1 by elements of matrix2 and places the resulting matrix at the current cell. Matrix dimensions must be the same.

2. Syntax:

Return Range  mxediv(Range matrix1, Cell cell2)

Description:

Divides elements of matrix1 by elements of a matrix defined by cell2 and the dimensions of matrix1.

Examples:

($a1) = mxediv($a1:$c3, $a4:$c6)
Before:
AB CD
1147
2258
3369
4234
5468
66912
After:
AB CD
10.51.333333331.75
20.50.833333331
30.50.666666670.75
4234
5468
66912
($a2) = mxediv($a1:$d4, $c6:$f9)