Python Numpy np.leggrid2d()方法

Python Numpy np.leggrid2d()方法

np.leggrid2d()方法用于评估x和y的笛卡尔乘积上的二维传奇系列。

语法: np.leggrid2d(x, y, c)
参数:
x, y : [array_like]二维数列在x和y的笛卡尔乘积中的各点进行评估。如果x或y是一个列表或元组,它首先被转换为ndarray,否则它将保持不变,如果它不是ndarray,它将被当作一个标量处理。
c : [array_like] 从低到高排序的 legendre 系列系数的一维数组。

返回: [ndarray] 在x和y的笛卡尔乘积中的各点的二维传奇数列的值。

代码#1:

# Python program explaining
# numpy.leggrid2d() method 
  
# importing numpy as np
  
import numpy as np 
from numpy.polynomial.legendre import leggrid2d
  
# Input legendre series coefficients
c = np.array([[1, 3, 5], [2, 4, 6]]) 
  
# using np.leggrid2d() method 
ans = leggrid2d([7, 9], [8, 10], c)
print(ans)

输出:

[[ 4751.5  7351.5]
 [ 5965.5  9229.5]]


代码#2:

# Python program explaining
# numpy.leggrid2d() method 
  
# importing numpy as np 
import numpy as np 
from numpy.polynomial.legendre import leggrid2d
  
# Input legendre series coefficients
c = np.array([[1, 3, 5], [2, 4, 6]]) 
  
# using np.leggrid2d() method 
ans = leggrid2d(7, 8, c)
  
print(ans)

输出:

4751.5

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程