AmitDiwan has Published 11365 Articles

Evaluate a Hermite_e series at array of points x in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 06:00:50

87 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

Multiply one Chebyshev series to another in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 06:00:03

116 Views

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

Raise a Hermite_e series to a power in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:59:01

115 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

Evaluate a Legendre series at multidimensional array of points x in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:57:02

103 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

Differentiate a Legendre series and set the derivatives in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:56:50

145 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

Differentiate a Legendre series with multidimensional coefficients in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:55:09

83 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

Evaluate a 2-D Hermite_e series at points (x,y) with 3D array of coefficient in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:52:44

76 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

Evaluate a 2-D Hermite_e series at points (x,y) in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:49:44

88 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

Evaluate a 2D Laguerre series at points (x,y) with 1D array of coefficient in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:47:43

118 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

Evaluate a 3D Laguerre series at points (x,y,z) with 4D array of coefficient in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:45:21

107 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

Advertisements