
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
170 Views
To raise a Hermite_e series to a power, use the polynomial.hermite.hermepow() method in Python Numpy. The method returns Hermite_e series of power. Returns the Hermite_e 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
170 Views
To evaluate a Legendre series at multi-dimensional array of points x, use the polynomial.legendre.legval() method in Python Numpy. The 1st parameter is 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 ... Read More

AmitDiwan
222 Views
To differentiate a Legendre series, use the polynomial.laguerre.legder() method in Python. Returns the Legendre series coefficients c differentiated m times along axis. At each iteration the result is multiplied by scl. The 1st parameter, c is an array of Legendre series coefficients. If c is multidimensional the different axis correspond ... Read More

AmitDiwan
149 Views
To differentiate a Legendre series, use the polynomial.laguerre.legder() method in Python. Returns the Legendre series coefficients c differentiated m times along axis. At each iteration the result is multiplied by sclThe 1st parameter, c is an array of Legendre series coefficients. If c is multidimensional the different axis correspond to ... Read More

AmitDiwan
145 Views
To evaluate a 2D Hermite_e series at points (x, y), use the hermite.hermeval2d() method in Python Numpy. The method returns the values of the two dimensional polynomial at points formed with pairs of corresponding values from x and y.The 1st parameter is x, y. The two dimensional series is evaluated ... Read More

AmitDiwan
156 Views
To evaluate a 2D Hermite_e series at points (x, y), use the hermite.hermeval2d() method in Python Numpy. The method returns the values of the two dimensional polynomial at points formed with pairs of corresponding values from x and y.The 1st parameter is x, y. The two dimensional series is evaluated ... Read More

AmitDiwan
187 Views
To evaluate a 2D Laguerre series at points (x, y), use the polynomial.laguerre.lagval2d() method in Python Numpy. The method returns the values of the two dimensional polynomial at points formed with pairs of corresponding values from x and y.The 1st parameter is x, y. The two dimensional series is evaluated ... Read More

AmitDiwan
179 Views
To evaluate a 3D Laguerre series at points x, y, 2 use the polynomial.laguerre.lagval3d() method in Python Numpy. The method returns the values of the multidimensional polynomial on points formed with triples of corresponding values from x, y, and z..If c has fewer than 3 dimensions, ones are implicitly appended ... Read More

AmitDiwan
196 Views
To evaluate a 3D Laguerre series at points x, use the polynomial.laguerre.lagval3d() method in Python Numpy. The method returns the values of the multidimensional polynomial on points formed with triples of corresponding values from x, y, and z. If c has fewer than 3 dimensions, ones are implicitly appended to ... Read More

AmitDiwan
151 Views
To evaluate a Hermite_e series at points x, use the hermite.hermeval() 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