Matrix: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:


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


[[Image:Matrix.png]]
[[Image:Matrix.png]]

Revision as of 07:40, 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 general not commutative.