AmitDiwan has Published 11365 Articles

Evaluate a 3D Laguerre series at points (x,y,z) in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:42:58

132 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

Evaluate a Hermite_e series at points x with multidimensional coefficient array in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:40:18

74 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

Evaluate a Hermite_e series at list of points x in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:38:35

86 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

Evaluate a Hermite_e series at tuple of points x in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:33:29

73 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

Differentiate a Legendre series in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:31:38

107 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

Evaluate a 3D Legendre series on the Cartesian product of x, y and z with 2d array of coefficient in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:29:24

93 Views

To evaluate a 3D Legendre series on the Cartesian product of x, y and z use the polynomial.legendre.leggrid3d() method in Python Numpy. The method returns the values of the three dimensional Chebyshev series at points in the Cartesian product of x, and z. If c has fewer than three dimensions, ... Read More

Evaluate a 3-D Hermite_e series on the Cartesian product of x, y and z with 2d array of coefficient in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 05:27:30

83 Views

To evaluate a 3-D Hermite_e series on the Cartesian product of x, y and z, use the hermite_e.hermegrid3d(x, y, z, c) method in Python. The method returns the values of the two dimensional polynomial at points in the Cartesian product of x, y and z. The parameters are x, y, ... Read More

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

AmitDiwan

AmitDiwan

Updated on 07-Mar-2022 07:21:00

78 Views

To evaluate a 2D Legendre series at points x, y, use the polynomial.legendre.legval2d() method in Python Numpy. The method returns the values of the two dimensional Legendre series at points formed from pairs of corresponding values from x and y.The 1st parameter is x, y. The two dimensional series is ... Read More

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

AmitDiwan

AmitDiwan

Updated on 07-Mar-2022 07:19:06

227 Views

To evaluate a 2D Legendre series at points x, y, use the polynomial.legendre.legval2d() method in Python Numpy. The method returns the values of the two dimensional Legendre series at points formed from pairs of corresponding values from x and y.The 1st parameter is x, y. The two dimensional series is ... Read More

Evaluate a Legendre series at list of points x in Python

AmitDiwan

AmitDiwan

Updated on 07-Mar-2022 07:17:24

88 Views

To evaluate a Legendre series at 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 or its elements ... Read More

Advertisements