Python Numpy np.hermdomain()方法

Python Numpy np.hermdomain()方法

在np.hermdomain()方法的帮助下,我们可以通过使用np.hermdomain()方法在蛭石系列中获得具有数组([-1, 1])值的过滤器。

语法 : np.hermdomain
返回:返回数组的过滤器([-1, 1])

例子#1 :
在这个例子中,我们可以看到,通过使用np.hermdomain()方法,我们能够在hermite数列中得到数组([-1, 1])的过滤器,通过使用这个方法。

# import numpy and hermdomain
import numpy as np
from numpy.polynomial.hermite import hermdomain
  
# using np.hermdomain() method
for i in range(5):
    gfg = hermdomain + [i, i + 1]
    print(gfg)

输出 :

[-1 2]
[0 3]
[1 4]
[2 5]
[3 6]

例子#2 :

# import numpy and hermdomain
import numpy as np
from numpy.polynomial.hermite import hermdomain
  
# using np.hermedomain() method
for i in range(5):
    gfg = hermedomain + [i-1, i + 1]
    print(gfg)

输出 :

[-2 2]
[-1 3]
[0 4]
[1 5]
[2 6]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Numpy 数学函数