PDA

View Full Version : simple matrix question


j-lee00
Apr15-08, 06:43 PM
simple matrix question


For Matrix A; size (3 x 1)
Matrix B; size (1 x 3)

AB = (3 x 3)

But when does matrix multiplication not work?

The|M|onster
Apr15-08, 06:56 PM
Matrix multiplication does not work when the number of columns in the first matrix is not equal to the number of rows in the second matrix.

j-lee00
Apr15-08, 07:01 PM
Cheers