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

Interesting Functions of numpy

Some basic Mathematical functions of numpy

Numpy stands for Numerical Python. It is a library consisting of multidimensional array objects and a collection of routines for proccessing of arrays. We can perform mathematical and logical operations on arrays using this library. Below are few basic Numpy fucntions.

  • numpy.log2
  • numpy.conjugate
  • numpy.radians
  • numpy.floor
  • numpy.cross
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "abhisheksingh9135/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/abhisheksingh9135/numpy-array-operations

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