
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Differentiate a Hermite series in Python
To differentiate a Hermite series, use the hermite.hermder() method in Python. The 1st parameter, c is an array of Hermite series coefficients. If c is multidimensional the different axis correspond to different variables with the degree in each axis given by the corresponding index. The 2nd parameter, m is the number of derivatives taken, must be non-negative. (Default: 1) The 3rd parameter, scl is a scalar. Each differentiation is multiplied by scl. The end result is multiplication by scl**m. This is for use in a linear change of variable. (Default: 1). The 4th parameter, axis is an Axis over which the derivative is taken. (Default: 0).
Steps
At first, import the required library −
import numpy as np from numpy.polynomial import hermite as H
Create an array of coefficients −
c = np.array([1,2,3,4])
Display the array −
print("Our Array...\n",c)
Check the Dimensions −
print("\nDimensions of our Array...\n",c.ndim)
Get the Datatype −
print("\nDatatype of our Array object...\n",c.dtype)
Get the Shape −
print("\nShape of our Array object...\n",c.shape)
To differentiate a Hermite series, use the hermite.hermder() method in Python −
print("\nResult...\n",H.hermder(c))
Example
import numpy as np from numpy.polynomial import hermite as H # Create an array of coefficients c = np.array([1,2,3,4]) # Display the array print("Our Array...\n",c) # Check the Dimensions print("\nDimensions of our Array...\n",c.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",c.dtype) # Get the Shape print("\nShape of our Array object...\n",c.shape) # To differentiate a Hermite series, use the hermite.hermder() method in Python print("\nResult...\n",H.hermder(c))
Output
Our Array... [1 2 3 4] Dimensions of our Array... 1 Datatype of our Array object... int64 Shape of our Array object... (4,) Result... [ 4. 12. 24.]
- Related Articles
- Differentiate a Hermite series with multidimensional coefficients in Python
- Differentiate a Hermite series and set the derivatives in Python
- Differentiate a Hermite series with multidimensional coefficients over specific axis in Python
- Differentiate a Hermite series with multidimensional coefficients over axis 1 in Python
- Differentiate a Hermite series and multiply each differentiation by a scalar in Python
- Integrate a Hermite series in Python
- Differentiate a Hermite series, set the derivatives and multiply each differentiation by a scalar in Python
- Differentiate a Hermite_e series in Python
- Differentiate a Laguerre series in Python
- Differentiate a Legendre series in Python
- Differentiate a Chebyshev series in Python
- Convert a polynomial to Hermite series in Python
- Raise a Hermite series to a power in Python
- Convert a Hermite series to a polynomial in Python
- Evaluate a Hermite series at points x in Python
