Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

. To represent this matrix in python, we will consider the matrix as two independent lists (

 and 

 put put together in one list.




Code Block
languagepy
titleCreating a matrix
a = np.array([[1,2],[3,4]])

...