原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.hermite.hermgrid3d.html
校对:(虚位以待)
numpy.polynomial.hermite.
hermgrid3d
(x, y, z, c)[source]在x,y和z的笛卡尔乘积上评估3-D Hermite系列。
此函数返回值:
where the points (a, b, c) consist of all triples formed by taking a from x, b from y, and c from z. The resulting points form a grid with x in the first dimension, y in the second, and z in the third.
只有当它们是元组或列表时,参数x,y和z才会转换为数组,否则它们将被视为标量。在任一情况下,x,y和z或其元素必须支持与自身和 c。
如果c具有少于三个维度,则将其隐含地附加到其形状以使其成为3-D。结果的形状将是c.shape [3:] + x.shape + y.shape + z.shape。
参数: | x,y,z:array_like,兼容对象
c:array_like
|
---|---|
返回: | 值:ndarray,兼容对象
|
也可以看看
笔记