
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
205 Views
To return the minimum of an array or minimum ignoring any NaNs, use the numpy.nanmin() method in Python. The method returns an array with the same shape as a, with the specified axis removed. If a is a 0-d array, or if axis is None, an ndarray scalar is returned. ... Read More

AmitDiwan
295 Views
To convert a polynomial to a Chebyshev series, use the chebyshev.poly2cheb() 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 Chebyshev series, ordered from lowest to highest degree. The method returns ... Read More

AmitDiwan
337 Views
To convert a Chebyshev series to a polynomial, use the chebyshev.cheb2poly() method in Python Numpy. Convert an array representing the coefficients of a Chebyshev 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
179 Views
To remove small trailing coefficients from Chebyshev polynomial, use the chebyshev.chebtrim() 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 by ... Read More

AmitDiwan
138 Views
To evaluate a Hermite series at points x, use the hermite.hermval() method in Python Numpy. The 1st parameter, x, if x is a list or tuple, it is converted to an ndarray, otherwise it is left unchanged and treated as a scalar. In either case, x or its elements must ... Read More

AmitDiwan
168 Views
To evaluate a Hermite series at points x, use the hermite.hermval() method in Python Numpy. The 1st parameter, x, if x is a list or tuple, it is converted to an ndarray, otherwise it is left unchanged and treated as a scalar. In either case, x or its elements must ... Read More

AmitDiwan
147 Views
To raise a Hermite series to a power, use the polynomial.hermite.hermpow() method in Python Numpy. The method returns Hermite series of power. Returns the Hermite series c raised to the power pow. The argument c is a sequence of coefficients ordered from low to high. i.e., [1, 2, 3] is ... Read More

AmitDiwan
122 Views
To divide one Hermite series by another, use the polynomial.hermite.hermdiv() method in Python Numpy. The method returns an array of Hermite series coefficients representing the quotient and remainder. Returns the quotient-with-remainder of two Hermite series c1 / c2. The arguments are sequences of coefficients from lowest order “term” to highest, ... Read More

AmitDiwan
121 Views
To multiply one Hermite series to another, use the polynomial.hermite.hermmul() method in Python Numpy. The method returns an array representing the Hermite series of their product. Returns the product of two Hermite series c1 * c2. The arguments are sequences of coefficients, from lowest order “term” to highest, e.g., [1, ... Read More

AmitDiwan
135 Views
To multiply the Hermite series by x, where x is the independent variable, use the polynomial.hermite.hermmulx() method in Python Numpy. The method returns an array representing the result of the multiplication. The parameter, c is a 1-D array of Hermite series coefficients ordered from low to high.StepsAt first, import the ... Read More