Search
Search Results
Search finished, found 9 page(s) matching the search query.
- numpy.polynomial.polynomial.polyval2d
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polyval2d...
- numpy.polynomial.polynomial.polyval2d (Python function, in numpy.polynomial.polynomial.polyval2d)
- numpy.polynomial.polynomial.polygrid2d
...jectThe values of the two dimensional polynomial at points in the Cartesian product of x and y. See also polyval, polyval2d, polyval3d, polygrid3d Examples >>> from numpy.polynomial import polynomial as P >>> c = ((1, 2, 3), (4, 5,...
- numpy.polynomial.polynomial.polygrid3d
...jectThe values of the two dimensional polynomial at points in the Cartesian product of x and y. See also polyval, polyval2d, polygrid2d, polyval3d Examples >>> from numpy.polynomial import polynomial as P >>> c = ((1, 2, 3), (4, 5,...
- numpy.polynomial.polynomial.polyval
...s True. Returns: valuesndarray, compatible objectThe shape of the returned array is described above. See also polyval2d, polygrid2d, polyval3d, polygrid3d Notes The evaluation uses Horner’s method. Examples >>> import numpy as n...
- numpy.polynomial.polynomial.polyval2d
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polyval2d...
- numpy.polynomial.polynomial.polyval3d
...idimensional polynomial on points formed with triples of corresponding values from x, y, and z. See also polyval, polyval2d, polygrid2d, polygrid3d Examples >>> from numpy.polynomial import polynomial as P >>> c = ((1, 2, 3), (4, 5,...
- numpy.polynomial.polynomial.polyvander2d
...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 polyval2d(x, y, c) will be the same up to roundoff. This equivalence is useful both for least squares fitting and for th...
- numpy.polynomial.polynomial.polyvander3d
...[1]+1)*(deg[2]+1)\). The dtype will be the same as the converted x, y, and z. See also polyvander, polyvander3d, polyval2d, polyval3d Examples >>> import numpy as np >>> from numpy.polynomial import polynomial as P >>> x = np.asarr...