mxadd

1. Syntax:

Return Range  mxadd(Range matrix1, Range matrix2)

Description:

Adds matrix1 to matrix2 and places the resulting matrix at the current cell. Matrix dimensions must be the same.

2. Syntax:

Return Range  mxadd(Range matrix1, Cell cell2)

Description:

Adds matrix1 to a matrix defined by cell2 and the dimensions of matrix1.

Examples:

($a1) = mxadd($a1:$c3, $a4)
Before:
AB CD
1147
2258
3369
4234
5468
66912
After:
AB CD
13711
261116
391521
4234
5468
66912
($a2) = mxadd($a1:$d4, $c6:$f9)