En este artículo, cubriremos cómo diferenciar una serie de Hermite con coeficientes multidimensionales en Python usando NumPy .
Ejemplo
Entrada: [[ 1 2 3 4 5]
[ 3 4 2 6 7]
[43 45 2 6 7]]
Salida: [[ 3. 4. 2. 6. 7.]
[129. 135. 6. 18. 21.]]
Explicación: Serie de Hermite de la derivada.
método hermite.hermder
Para evaluar una serie de Hermite en los puntos x con una array de coeficientes multidimensional, NumPy proporciona una función llamada hermite.hermder() . Este método se usa para generar la serie Hermite y está disponible en el módulo NumPy en python, devuelve una array de coeficientes multidimensional. A continuación se muestra la sintaxis del método Hermite.
Sintaxis : hermite.hermder(x, m, eje)
Parámetro:
- x: array
- m: Número de derivados tomados, debe ser no negativo. (Predeterminado: 1)
- eje: Eje sobre el cual se toma la derivada. (Predeterminado: 1).
Regreso: Serie Hermite.
Ejemplo 1:
En este ejemplo, estamos creando una array multidimensional de coeficientes de 5 x 2 y mostrando la forma y las dimensiones de una array. Además, estamos utilizando el método hermite.hermder() para diferenciar una serie hermite.
Python3
# import the numpy module import numpy # import hermite from numpy.polynomial import hermite # create array of coefficients with 5 elements # each coefficients_data = numpy.array([[1, 2, 3, 4, 5], [3, 4, 2, 6, 7]]) # Display the coefficients print(coefficients_data) # get the shape print(f"\nShape of an array: {coefficients_data.shape}") # get the dimensions print(f"Dimension: {coefficients_data.ndim}") # using hermite.hermder() method to differentiate # a Hermite series. print("\nHermite series", hermite.hermder(coefficients_data))
Producción:
[[1 2 3 4 5] [3 4 2 6 7]] Shape of an array: (2, 5) Dimension: 2 Hermite series [[ 6. 8. 4. 12. 14.]]
Ejemplo 2:
En este ejemplo, estamos creando una array multidimensional de coeficientes de 5 x 3 y mostrando la forma y las dimensiones de una array. Además, estamos usando el número de derivadas = 2, y el eje sobre el que se toma la derivada es 1.
Python3
# import the numpy module import numpy # import hermite from numpy.polynomial import hermite # create array of coefficients with 5 elements each coefficients_data = numpy.array( [[1, 2, 3, 4, 5], [3, 4, 2, 6, 7], [43, 45, 2, 6, 7]]) # Display the coefficients print(coefficients_data) # get the shape print(f"\nShape of an array: {coefficients_data.shape}") # get the dimensions print(f"Dimension: {coefficients_data.ndim}") # using hermite.hermder() method to differentiate a Hermite series. print("\nHermite series", hermite.hermder(coefficients_data, m=2, axis=1))
Salida :
[[ 1 2 3 4 5] [ 3 4 2 6 7] [43 45 2 6 7]] Shape of an array: (3, 5) Dimension: 2 Hermite series [[ 24. 96. 240.] [ 16. 144. 336.] [ 16. 144. 336.]]
Publicación traducida automáticamente
Artículo escrito por sravankumar8128 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA