Category: Numeric and Scientific Computing

Simpsons rule in python

Simpson’s rule is a numerical method used to approximate the definite integral of a function. In Python, there are several ways to implement Simpson’s rule. In this article, we will explore three

Read More »

Short time fourier transform in python

Short time Fourier transform (STFT) is a widely used technique in signal processing for analyzing non-stationary signals. In Python, there are several ways to implement STFT, each with its own advantages and

Read More »

Softmax python calculation

Softmax is a mathematical function that converts a vector of real numbers into a probability distribution. It is commonly used in machine learning algorithms, especially in multi-class classification problems. In this article,

Read More »

Stieltjes integration in python

Stieltjes integration is a method used to calculate the integral of a function with respect to a measure. In Python, there are several ways to perform Stieltjes integration. In this article, we

Read More »

Symbolic mathematics python

Symbolic mathematics is a powerful tool in Python that allows us to perform mathematical operations using symbols instead of numerical values. This can be particularly useful when dealing with complex equations or

Read More »