Learn practical skills, build real-world projects, and advance your career

NumPy Functions

FIVE Interesting NumPy functions that I've found

NumPy is a library for the Python programming language. It is a Python library used for working with arrays, it can also be used to deal with linear algebra, fourier tranform and matrices.

  • numpy.diag
  • numpy.flip
  • numpy.sort
  • numpy.bitwise_and
  • numpy.packbits
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "sagarankit13/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/sagarankit13/numpy-array-operations

Let's begin by importing Numpy and listing out the functions covered in this notebook.