Search
Search Results
Search finished, found 9 page(s) matching the search query.
- numpy.polynomial.hermite.hermval2d
...Polynomials Hermite Series, “Physicists” (numpy.polynomial.hermite) numpy.polynomial.hermite.hermval2d...
- numpy.polynomial.hermite.hermval2d (Python function, in numpy.polynomial.hermite.hermval2d)
- numpy.polynomial.hermite.hermgrid2d
...jectThe values 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...
- numpy.polynomial.hermite.hermgrid3d
...jectThe values of the two 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 = [...
- numpy.polynomial.hermite.hermval
...value is True. Returns: 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. Exa...
- numpy.polynomial.hermite.hermval2d
...Polynomials Hermite Series, “Physicists” (numpy.polynomial.hermite) numpy.polynomial.hermite.hermval2d...
- numpy.polynomial.hermite.hermval3d
...idimensional polynomial 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 = [...
- numpy.polynomial.hermite.hermvander2d
...xdeg + 1, ydeg + 1) in the order \[c_{00}, c_{01}, c_{02} ... , c_{10}, c_{11}, c_{12} ...\] and np.dot(V, c.flat) and hermval2d(x, y, c) will be the same up to roundoff. This equivalence is useful both for least squares fitting and for th...
- numpy.polynomial.hermite.hermvander3d
...[1]+1)*(deg[2]+1)\). The dtype will be the same as the converted x, y, and z. See also hermvander, hermvander3d, hermval2d, hermval3d Examples >>> from numpy.polynomial.hermite import hermvander3d >>> x = np.array([-1, 0, 1]) >>> y...