Versions Compared

Key

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

The NumPy library is very helpful for solving linear systems in python. For how to install NumPy look here

Info
titleImporting NumPy

All the code-snippets below has numpy importet as np. To learn how see the installation of NumPy

Matrixes in Python


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

...