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

Some Unique and Interesting NumPy Functions

What is NumPy?

NumPy, which stands for Numerical Python, is a library consisting of multidimensional array objects and a collection of routines for processing those arrays. Using NumPy, mathematical and logical operations on arrays can be performed. This tutorial explains the basics of NumPy such as its architecture and environment. It also discusses the various array functions, types of indexing, etc. An introduction to Matplotlib is also provided. All this is explained with the help of examples for better understanding.

☞ Below are few unique and interesting Numpy fucntions :

  • numpy.full
  • numpy.linalg.det
  • numpy.char.add
  • numpy.hsplit
  • numpy.matmul
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-unique-and-interesting-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "mshakti-shukla/numpy-unique-and-interesting-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/mshakti-shukla/numpy-unique-and-interesting-array-operations

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