
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
176 Views
To compute the roots of a polynomials, use the chebyshev.chebroots() method in Python Numpy. The method returns an array of the roots of the series. If all the roots are real, then out is also real, otherwise it is complex. The parameter, c is a 1-D array of coefficients.The root ... Read More

AmitDiwan
254 Views
To compute the roots of a polynomials, use the chebyshev.chebroots() method in Python Numpy. The method returns an array of the roots of the series. If all the roots are real, then out is also real, otherwise it is complex. The parameter, c is a 1-D array of coefficients.The root ... Read More

AmitDiwan
179 Views
To generate a Chebyshev series with given roots, use the chebyshev.chebfromroots() method in Python Numpy. The method returns 1-D array of coefficients. If all roots are real then out is a real array, if some of the roots are complex, then out is complex even if all the coefficients in ... Read More

AmitDiwan
127 Views
To evaluate a 2-D Hermite series on the Cartesian product of x and y, use the hermite.hermgrid2d(x, y, c) method in Python. The method returns the values of the two dimensional polynomial at points in the Cartesian product of x and y.The parameters are x, y. The two dimensional series ... Read More

AmitDiwan
142 Views
To evaluate a 2-D Hermite series on the Cartesian product of x and y, use the hermite.hermgrid2d(x, y, c) method in Python. The method returns the values of the two dimensional polynomial at points in the Cartesian product of x and y.The parameters are x, y. The two dimensional series ... Read More

AmitDiwan
164 Views
To add one Laguerre series to another, use the polynomial.laguerre.lagadd() method in Python Numpy. The method returns an array representing the Laguerre series of their sum.Returns the sum of two Laguerre series c1 + c2. The arguments are sequences of coefficients ordered from lowest order term to highest, i.e., [1, ... Read More

AmitDiwan
250 Views
To convert a polynomial to a Hermite series, use the hermite.poly2herm() method in Python Numpy. Convert an array representing the coefficients of a polynomial ordered from lowest degree to highest, to an array of the coefficients of the equivalent Hermite series, ordered from lowest to highest degree. The method returns ... Read More

AmitDiwan
339 Views
To convert a Hermite series to a polynomial, use the hermite.herm2poly() method in Python Numpy. Convert an array representing the coefficients of a Hermite series, ordered from lowest degree to highest, to an array of the coefficients of the equivalent polynomial (relative to the “standard” basis) ordered from lowest to ... Read More

AmitDiwan
146 Views
To remove small trailing coefficients from Hermite polynomial, use the hermite.hermtrim() method in Python Numpy. The method returns a 1-d array with trailing zeros removed. If the resulting series would be empty, a series containing a single zero is returned. The “Small” means “small in absolute value” and is controlled ... Read More

AmitDiwan
257 Views
To get the Least squares fit of Hermite series to data, use the hermite.hermfit() method in Python Numpy. The method returns the Hermite coefficients ordered from low to high. If y was 2-D, the coefficients for the data in column k of y are in column k. The parameter, x ... Read More