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

Upload this notebook to your Jovian profile using jovian.commit and make a submission here: https://jovian.ml/learn/data-analysis-with-python-zero-to-pandas/assignment/assignment-2-numpy-array-operations

Mathematics using numpy library functions

here we will apply numpy functions in solving arithmetic,trigonometric and matrix related prblems.

Numpy package provides an easy and flexible interface to optimized computation with arrays of data.Here we will apply Numpy's universal functions to solve problems in arithmetic,trigonmery and matrix algebra.

  • Array Arithmetic numpy functions(addition,subtraction,multiplication,absolute,mod etc)
  • Trigonometric Numpy functions(sin,cos,tan etc)
  • Exponential and logarithmic numpy functions(exp,power etc)
  • Numpy reshape function
  • linalg.inv() function(to calculate inverse of a matrix)
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='Mathematics using numpy library functions')

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