Matrix: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
=Overview=
=Overview=


M
[[Image:Matrix.png]]
  m x n


m - rows
where m represents the number of rows and n represents the number of columns.
 
n - columns.


=Matrix Multiplication=
=Matrix Multiplication=

Revision as of 06:27, 28 December 2017

Internal

Overview

Matrix.png

where m represents the number of rows and n represents the number of columns.

Matrix Multiplication

Two matrices can be multiplied if the number of columns of the first operand is equal with the number of rows of the second operand:

MatrixMultiplication.png

Matrix multiplication is general not commutative.