How to solve system of linear equations with Numpy

In this tutorial, we will learn how to solve a system of linear equations in Python using Numpy. We will see two examples, first with a system of linear equations with two unknowns and. two variables. And the with a system of linear equations with three unknowns and three equations. We will use Numpy’s linalg.solve()… Continue reading How to solve system of linear equations with Numpy

How to do Cholesky Matrix Decomposition with Numpy

Choleski decomposition, also known as Choleski factorization, is one of the commonly used matrix decomposition methods that factorises a Hermitian, positive-definite matrix into the product of a lower triangular matrix and its conjugate transpose. This decomposition is widely used in scientific and engineering applications, such as linear algebra, machine learning, and optimization. In this blog… Continue reading How to do Cholesky Matrix Decomposition with Numpy

How to Compute Matrix inverse with Numpy

In this post, we will learn how to compute the inverse of matrix in Python using Numpy. Computing the inverse of a matrix is at the heart of linear algebra and important for many real world problem. We will use Numpy’s linalg.inv() function to to compute the inverse of a matrix in Python. Before we… Continue reading How to Compute Matrix inverse with Numpy

How to Compute Manhattan Distance in Python with Numpy

In this post, we will learn how to compute Manhattan distance, one. of the commonly used distance meeasures, in Python using Numpy. Manhattan distance is also known as the “taxi cab” distance as it is a measure of distance between two points in a grid-based system like layout of the streets in Manhattan, New York… Continue reading How to Compute Manhattan Distance in Python with Numpy

How to Compute Euclidean distance in Numpy

In this post, we will learn how to compute Euclidean distance between two points in 2-dimension and also in 3-dimension using Numpy. Euclidean distance is one of the most commonly used distance measure and it is defined as the straight-line distance between two points in Euclidean space. Euclidean distance is calculated as the square root… Continue reading How to Compute Euclidean distance in Numpy