AmitDiwan has Published 11365 Articles

Integrate a Legendre series and set the integration constant in Python

AmitDiwan

AmitDiwan

Updated on 09-Mar-2022 05:12:36

81 Views

To integrate a Legendre series, use the polynomial.legendre.legint() method in Python. The method returns the Legendre series coefficients c integrated m times from lbnd along axis. At each iteration the resulting series is multiplied by scl and an integration constant, k, is added. The scaling factor is for use in ... Read More

Differentiate a Legendre series and multiply each differentiation by a scalar in Python

AmitDiwan

AmitDiwan

Updated on 09-Mar-2022 05:09:57

102 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 3-D Hermite_e series at points (x,y,z) in Python

AmitDiwan

AmitDiwan

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

82 Views

To evaluate a 3D Hermite_e series at points (x, y, z), use the hermite.hermeval3d() 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.The 1st parameter is x, y, z. The three dimensional series ... Read More

Evaluate a Hermite_e series at multi-dimensional array of points x in Python

AmitDiwan

AmitDiwan

Updated on 09-Mar-2022 05:02:47

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

Integrate a Chebyshev series and set the lower bound of the integral in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 07:36:42

107 Views

To Integrate a Chebyshev series, use the chebyshev.chebint() method in Python. Returns the Chebyshev series coefficients c integrated m times from lbnd along axis. At each iteration the resulting series is multiplied by scl and an integration constant, k, is added. The 1st parameter, c is an array of Chebyshev ... Read More

Differentiate a Chebyshev series with multidimensional coefficients in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 07:34:31

94 Views

To differentiate a Chebyshev series, use the polynomial.chebder() method in Python Numpy. The method returns the Chebyshev series of the derivative. Returns the Chebyshev series coefficients c differentiated m times along axis. At each iteration the result is multiplied by scl. The argument c is an array of coefficients from ... Read More

Differentiate a Chebyshev series in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 07:33:27

201 Views

To differentiate a Chebyshev series, use the polynomial.chebder() method in Python Numpy. The method returns the Chebyshev series of the derivative. Returns the Chebyshev series coefficients c differentiated m times along axis. At each iteration the result is multiplied by scl. The argument c is an array of coefficients from ... Read More

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

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 07:31:33

89 Views

To evaluate a 3-D Chebyshev series on the Cartesian product of x, y, z, use the polynomial.chebgrid3d(x, y, z) method in Python. If c has fewer than three dimensions, ones are implicitly appended to its shape to make it 3-D. The shape of the result will be c.shape[3:] + x.shape ... Read More

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

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 07:29:20

96 Views

To evaluate a 3-D Chebyshev series on the Cartesian product of x, y, z, use the polynomial.chebgrid3d(x, y, z) method in Python. If c has fewer than three dimensions, ones are implicitly appended to its shape to make it 3-D. The shape of the result will be c.shape[3:] + x.shape ... Read More

Integrate a Chebyshev series and set the Integration constant in Python

AmitDiwan

AmitDiwan

Updated on 08-Mar-2022 07:27:33

103 Views

To Integrate a Chebyshev series, use the chebyshev.chebint() method in Python. Returns the Chebyshev series coefficients c integrated m times from lbnd along axis. At each iteration the resulting series is multiplied by scl and an integration constant, k, is added. The 1st parameter, c is an array of Chebyshev ... Read More

Advertisements