OOoES/Traduccion/Calc: Funcion MMULT
From Apache OpenOffice Wiki
< OOoES
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
MMULT
Devuelve la matriz producto de dos matrices.
Sintaxis:
MDETERM(Matriz, Matriz)
- Donde Matriz es la primera matriz para el producto de matrices y Matriz es la segunda matriz con el mismo número de filas y columnas que la primera.
Ejemplo:
| A | B | |
|---|---|---|
| 1 | 1 | 2 |
| 2 | 4 | 3 |
| C | D | |
|---|---|---|
| 1 | 2 | 2 |
| 2 | 2 | 2 |
MMULT(A1:B2;C1:D")
- Devuelve el producto como matriz:
| C | D | |
|---|---|---|
| 4 | 6 | 6 |
| 5 | 14 | 14 |