Friday, July 20, 2018

NumPy - Linear Algebra

NumPy - Linear Algebra


NumPy package contains numpy.linalg module that provides all the functionality required for linear algebra. Some of the important functions in this module are described in the following table.
Sr.No.Function & Description
1dot
Dot product of the two arrays
2vdot
Dot product of the two vectors
3inner
Inner product of the two arrays
4matmul
Matrix product of the two arrays
5determinant
Computes the determinant of the array
6solve
Solves the linear matrix equation
7inv
Finds the multiplicative inverse of the matrix

No comments:

Post a Comment