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

5 numpy functions with examples

List of functions

Write a short introduction about Numpy and list the chosen functions.

  • function 1 - function to find average of an array
  • function 2 - function to find exponential of all elements of array
  • function 3 - function to find logarithmic base 10 of all elements of array
  • function 4 - function to find trignometric values of all the elements of array
  • function 5 - function to find standard deviation alon a specified axis of an array

The recommended way to run this notebook is to click the "Run" button at the top of this page, and select "Run on Binder". This will run the notebook on mybinder.org, a free online service for running Jupyter notebooks.

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Creating a new project "adimehta283/numpy-array-operations" [jovian] Uploading notebook.. [jovian] Uploading additional files... [jovian] Committed successfully! https://jovian.ai/adimehta283/numpy-array-operations

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