You are on page 1of 5

also transpose with Paste special

Transpose of a Matrix
Using Transpose

A Transpose of A
1 2 3 1 4 1
4 5 6 2 5 -1
1 -1 3 3 6 3
2 2 2 3x4
4x3

manual copy paste special-transpose


1 4 1 2
2 5 -1 2
3 6 3 2
ose of A
2
2
2

array-transpose
1 4 1 2
2 5 -1 2
3 6 3 2
Multiplication of two matrices
using MMULT()

A B AxB
1 2 3 2 0 3
4 5 6 -1 1 9
1 -1 3 1 3 6
2 2 2 3X2 4
4X3 4X2

3
9
6
4
AxB
11
23
8
8
4X2

11
23
8
8
Solving Simultaneous Equations
using MMULT() and MINVERSE()

A S B
5 7 3 1.25 10
0 -2 1 -0.41 3
-3 0 4 2.19 5

S = A-1 B

1.253165
-0.40506
2.189873

You might also like