Linear algebra

From wiki
Revision as of 17:22, 26 May 2019 by Hdridder (talk | contribs) (Created page with "Category:AI Category:Python ;Matrix :Multidimensional array 4x2 Matrix or <math>\mathbb{R}</math><sup>4x2</sup> A = <math>\begin{bmatrix} 2 & 5 \\ 12...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Matrix
Multidimensional array

4x2 Matrix or 4x2 A =

Where counting starts is defined by the programming language used. Python starts counting a 0. In python use arrays to define a matrix.

A0,1 = 2
A2,2 = 52

Vector
A nx1 matrix. In python is is advised to use a one-dimensional array (to be tested)

4 dimensional vector 4 A =

Arithmetics m1 =

m2 =

m1 + m2