Python Numpy np.hermgauss()方法

Python Numpy np.hermgauss()方法

在np.hermgauss()方法的帮助下,我们可以通过使用np.hermgauss()方法得到高斯赫米特的正交值。

语法: np.hermgauss(degree)
返回:返回高斯赫米特的正交函数。

例子#1 :
在这个例子中,我们可以看到,通过使用np.hermgauss()方法,我们能够得到高斯hermite的正交。

# import numpy and hermgauss
import numpy as np
  
# using np.hermgauss() method
gfg = hermgauss(3)
  
print(gfg)

输出 :

(array([-1.22474487, 0., 1.22474487]), array([0.29540898, 1.1816359, 0.29540898]))

例子#2 :

# import numpy and hermgauss
import numpy as np
  
# using np.hermgauss() method
gfg = hermgauss(5)
  
print(gfg)

输出 :

(array([-2.02018287, -0.95857246, 0., 0.95857246, 2.02018287]), array([0.01995324, 0.39361932, 0.94530872, 0.39361932, 0.01995324]))

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程