Index
Definition
Bi-dimensional array organised by rows and column (list of lists)
Example:
How to access an element of the matrix in the third row and second column
element = matrix[3][2]
element = matrix[r][c]
Functions
Shape
Function that calculates the number of row and columns of a matrix
Create matrix
Function that generates an empty matrix or a matrix with the same value every where