Niharika Aitam has Published 172 Articles

Program to Print K using Alphabets

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 11:55:14

321 Views

Python is used to print different patterns easily within less time as per the user requirement. In the same way, we can print the letter K using the alphabets available in the English language. Example In this example we will create the letter K by using the K alphabet. The ... Read More

Program to check if a string contains any special character

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 11:22:22

3K+ Views

Python helps us to develop code as per the developer requirement and application. It provides multiple modules, packages, functions and classes which makes the code more efficient. Using python language, we can check if a string contains any special character or not. There are several ways to check the string ... Read More

Divide one Hermite series by another in Python using NumPy

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:33:03

118 Views

The Hermite series is one of the mathematical techniques, which is used to represent the infinite series of Hermite polynomials. The Hermite polynomials referred as the sequence of orthogonal polynomials which are the solutions of the Hermite differential equation. Dividing one hermite series by another The Hermite series is ... Read More

Differentiate a Hermite_e series and set the derivatives in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:30:35

170 Views

Hermite_e series is also known as probabilist's Hermite polynomial or the physicist's Hermite polynomial the available in mathematics which is used to sum of the weighted hermites polynomials. In some particular cases of the quantum mechanics, the Hermite_e series the weight function is given as e^(−x^2). The following is the ... Read More

Digital Band Reject Butterworth Filter in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:11:23

385 Views

A Band Reject filter is the filter which rejects or blocks all the frequencies within the range and passes the frequencies outside the range. The Butterworth is the type of a filter designed to filter the frequencies as flat as possible in the pass band. The following are the main ... Read More

Digital High Pass Butterworth Filter in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:06:28

1K+ Views

The high pass filter is the electronic filter which passes the frequency of signals greater than the defined cutoff frequency and the frequency of the signals lower than the cutoff will be attenuated. The attenuation of each frequency is based on the filter design. The High pass Butterworth filter has ... Read More

Digital Low Pass Butterworth Filter in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:04:35

2K+ Views

The low pass filter is the electronic filter which passes the frequency of signals lesser than the defined cutoff frequency and the frequency of the signals higher than the cutoff will be attenuated. The High pass Butterworth filter has some specialized features defined as follows. The sampling rate of ... Read More

Divide a DataFrame in a ratio

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:01:30

910 Views

Pandas library is used to manipulate the data and analyze the data. The data will be created using the pandas library in two ways Dataframe and Series. A DataFrame is the two dimensional data structure containing the rows and columns. There different ways to divide the DataFrame data based ... Read More

Divide each row by a vector element using NumPy

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 11:51:34

810 Views

We can divide each row of the Numpy array by a vector element. The vector element can be a single element, multiple elements or an array. After dividing the row of an array by a vector to generate the required functionality, we use the divisor (/) operator. The division of ... Read More

Differentiate Hermite series and multiply each differentiation by scalar using NumPy in Python

Niharika Aitam

Niharika Aitam

Updated on 31-Oct-2023 16:59:13

96 Views

Hermite_e series is also known as probabilist's Hermite polynomial or the physicist's Hermite polynomial. It is available in mathematics which is used to calculate the sum of weighted hermites polynomials. In some particular cases of the quantum mechanics, the Hermite_e series the weight function is given as e^(−x^2). Calculating ... Read More

Advertisements