Thursday, October 2, 2025
HomeLanguagesPython | Numpy np.hermtrim() method

Python | Numpy np.hermtrim() method

With the help of np.hermtrim() method, we can trim the trailing values in a series of hermite coefficients by using np.hermtrim() method.

Syntax : np.hermtrim(series, tol)

Return : Return the coefficients of series after trimming.

Example #1 :
In this example we can see that by using np.hermtrim() method, we are able to get the trimmed hermite series by using this method.




# import numpy and hermtrim
import numpy as np
from numpy.polynomial.hermite import hermtrim
  
series = np.array([2, 0, 4, 0, 6, 1, 1, 1])
  
# using np.hermtrim() method
gfg = hermtrim(series, tol = 1)
  
print(gfg)


Output :

[2. 0. 4. 0. 6.]

Example #2 :




# import numpy and hermtrim
import numpy as np
from numpy.polynomial.hermite import hermtrim
  
series = np.array([1, 0, 0, 0, 0, 0])
  
# using np.hermtrim() method
gfg = hermtrim(series, tol = 0)
  
print(gfg)


Output :

[1.]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11927 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS