Search
Search Results
Search finished, found 7 page(s) matching the search query.
- numpy.polynomial.hermite.hermgrid3d
...Polynomials Hermite Series, “Physicists” (numpy.polynomial.hermite) numpy.polynomial.hermite.hermgrid3d...
- numpy.polynomial.hermite.hermgrid3d (Python function, in numpy.polynomial.hermite.hermgrid3d)
- numpy.polynomial.hermite.hermgrid2d
...two dimensional polynomial at points in the Cartesian product of x and y. See also hermval, hermval2d, hermval3d, hermgrid3d Examples >>> from numpy.polynomial.hermite import hermgrid2d >>> x = [1, 2, 3] >>> y = [4, 5] >>> c = [[1,...
- numpy.polynomial.hermite.hermgrid3d
...Polynomials Hermite Series, “Physicists” (numpy.polynomial.hermite) numpy.polynomial.hermite.hermgrid3d...
- numpy.polynomial.hermite.hermval
...ndarray, algebra_likeThe shape of the return value is described above. See also hermval2d, hermgrid2d, hermval3d, hermgrid3d Notes The evaluation uses Clenshaw recursion, aka synthetic division. Examples >>> from numpy.polynomial.he...
- numpy.polynomial.hermite.hermval2d
...nomial at points formed with pairs of corresponding values from x and y. See also hermval, hermgrid2d, hermval3d, hermgrid3d Examples >>> from numpy.polynomial.hermite import hermval2d >>> x = [1, 2] >>> y = [4, 5] >>> c = [[1, 2, 3...
- numpy.polynomial.hermite.hermval3d
...on points formed with triples of corresponding values from x, y, and z. See also hermval, hermval2d, hermgrid2d, hermgrid3d Examples >>> from numpy.polynomial.hermite import hermval3d >>> x = [1, 2] >>> y = [4, 5] >>> z = [6, 7] >>...