Ashish Nair

Ashish Nair

GL Quadrature Feature

Gauss-Legendre Quadrature in Python using NumPy

The approximate solution of complicated mathematical functions depends critically on numerical integration. Providing remarkably accurate results by carefully choosing nodes and weights, the Gauss-Legendre Quadrature method is a robust numerical integration method. Precise answers to a variety of integration problems…

Downsampling Feature

Downsampling Arrays Image Processing using Python.

The Python downsampling approach will be explored, and an interesting visit into the world of image processing will be taken in this article. A key ability for faster processing and effective memory management is learning the concepts of image scaling…

Em Algo Featured

Beginner’s Guide to EM-Algorithm.

EM Algorithm is the short form of Expectation-Maximization Algorithm, a methodology for algorithm construction. It can be seen as an unsupervised clustering method on mixture models. Unsupervised Machine Learning is a type of Machine Learning. To get to know more…

Format Specifier Feature

What does {:02d} mean in Python?

String formatting is a very essential element of Python programming. Usually, we get strings that are not completely in the format that we want them to be in. Converting the string in the desired format is called string formatting. To…