Search
Search Results
Search finished, found 8 page(s) matching the search query.
- numpy.poly1d.roots
...numpy.poly1d.roots...
- numpy.poly1d.roots (Python property, in numpy.poly1d.roots)
- numpy.poly
...numpy.poly numpy.poly(seq_of_zeros)[source] Find the coefficients of a polynomial with the given sequence of roots. Note This forms part of the old polynomial API. Since version 1.4, the new polynomial API defined in numpy.polyn...
- numpy.poly1d
...eThe polynomial’s coefficients, in decreasing powers, or if the value of the second parameter is True, the polynomial’s roots (values where the polynomial evaluates to 0). For example, poly1d([1, 2, 3]) returns an object that represents \(...
- numpy.poly1d.r
...numpy.poly1d.r property property poly1d.r The roots of the polynomial, where self(x) == 0...
- numpy.poly1d.roots
...numpy.poly1d.roots...
- numpy.roots
...mPy reference Routines and objects by topic Polynomials Poly1d numpy.roots...
- Polynomials
...nomial object from coefficients [1] p = np.poly1d([1, 2, 3]) p = Polynomial([3, 2, 1]) Create a polynomial object from roots r = np.poly([-1, 1]) p = np.poly1d(r) p = Polynomial.fromroots([-1, 1]) Fit a polynomial of degree deg to data np...