Search
Search Results
Search finished, found 9 page(s) matching the search query.
- numpy.polynomial.hermite.hermval3d
...Polynomials Hermite Series, “Physicists” (numpy.polynomial.hermite) numpy.polynomial.hermite.hermval3d...
- numpy.polynomial.hermite.hermval3d (Python function, in numpy.polynomial.hermite.hermval3d)
- numpy.polynomial.hermite.hermgrid2d
...ues of the 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] >>...
- numpy.polynomial.hermite.hermgrid3d
...wo dimensional polynomial at points in the Cartesian product of x and y. See also hermval, hermval2d, hermgrid2d, hermval3d Examples >>> from numpy.polynomial.hermite import hermgrid3d >>> x = [1, 2] >>> y = [4, 5] >>> z = [6, 7] >>...
- numpy.polynomial.hermite.hermval
...ns: valuesndarray, 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.po...
- numpy.polynomial.hermite.hermval2d
...sional polynomial 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...
- numpy.polynomial.hermite.hermval3d
...Polynomials Hermite Series, “Physicists” (numpy.polynomial.hermite) numpy.polynomial.hermite.hermval3d...
- numpy.polynomial.hermite.hermvander2d
...(deg[1]+1)\). The dtype will be the same as the converted x and y. See also hermvander, hermvander3d, hermval2d, hermval3d Examples >>> import numpy as np >>> from numpy.polynomial.hermite import hermvander2d >>> x = np.array([-1,...
- numpy.polynomial.hermite.hermvander3d
...1, zdeg + 1) in the order \[c_{000}, c_{001}, c_{002},... , c_{010}, c_{011}, c_{012},...\] and np.dot(V, c.flat) and hermval3d(x, y, z, c) will be the same up to roundoff. This equivalence is useful both for least squares fitting and for...