Matrix: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 6: Line 6:
=Overview=
=Overview=


M
A matrix is a two-dimensional array. Its content is organized in rows and columns.
  m x n


m - rows
[[Image:Matrix.png]]


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


=Matrix Multiplication=
=Matrix Multiplication=
Line 19: Line 18:
:[[Image:MatrixMultiplication.png]]
:[[Image:MatrixMultiplication.png]]


Matrix multiplication is general not commutative.
Matrix multiplication is in general not commutative.

Latest revision as of 07:53, 28 December 2017

Internal

Overview

A matrix is a two-dimensional array. Its content is organized in rows and columns.

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 in general not commutative.