Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Linear Algebra Operations | Getting into NumPy Basics
Getting into NumPy Basics
course content

Course Content

Getting into NumPy Basics

bookLinear Algebra Operations

NumPy offers a plethora of functions for executing linear algebra operations on arrays, including matrix multiplication, transposition, inversion, and decomposition. Key functions include:

  • dot(): Computes the dot product of two arrays;
  • transpose(): Transposes an array;
  • inv(): Computes the inverse of a matrix;
  • linalg.svd(): Performs the singular value decomposition of a matrix;
  • linalg.eig(): Determines the eigenvalues and eigenvectors of a matrix.

Task

  1. Compute the dot product of the arrays.
  2. Transpose the first array.
  3. Compute the inverse of the second array.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

NumPy offers a plethora of functions for executing linear algebra operations on arrays, including matrix multiplication, transposition, inversion, and decomposition. Key functions include:

  • dot(): Computes the dot product of two arrays;
  • transpose(): Transposes an array;
  • inv(): Computes the inverse of a matrix;
  • linalg.svd(): Performs the singular value decomposition of a matrix;
  • linalg.eig(): Determines the eigenvalues and eigenvectors of a matrix.

Task

  1. Compute the dot product of the arrays.
  2. Transpose the first array.
  3. Compute the inverse of the second array.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Section 1. Chapter 5
some-alt