Search
Search Results
Search finished, found 7 page(s) matching the search query.
- numpy.polynomial.polynomial.polygrid2d
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polygrid2d...
- numpy.polynomial.polynomial.polygrid2d (Python function, in numpy.polynomial.polynomial.polygrid2d)
- numpy.polynomial.polynomial.polygrid2d
...Polynomials Power Series (numpy.polynomial.polynomial) numpy.polynomial.polynomial.polygrid2d...
- numpy.polynomial.polynomial.polygrid3d
...ues 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, 6), (7, 8,...
- numpy.polynomial.polynomial.polyval
...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 np >>> from...
- numpy.polynomial.polynomial.polyval2d
...he two dimensional polynomial at points formed with pairs of corresponding values from x and y. See also polyval, polygrid2d, polyval3d, polygrid3d Examples >>> from numpy.polynomial import polynomial as P >>> c = ((1, 2, 3), (4, 5,...
- numpy.polynomial.polynomial.polyval3d
...l 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, 6), (7, 8,...