Module 3#

NumPy#

NumPy (Numerical Python) is an open source Python library that is used for working with arrays. It contains multidimensional array and matrix data structures with methods to efficiently operate on it. NumPy can be used to perform a wide variety of mathematical operations on arrays. It is the fundamental package for scientific computing with Python.

Before we get started with this module, in case you have not installed NumPy, you can do so by running pip install numpy on your terminal.

References:

  1. https://www.w3schools.com/python/numpy/numpy_intro.asp

  2. https://www.geeksforgeeks.org/introduction-to-numpy/

  3. https://numpy.org/doc/stable/user/absolute_beginners.html