En este artículo, cubriremos cómo diferenciar la serie Chebyshev con coeficientes multidimensionales en Python usando NumPy .
Ejemplo
Entrada: [[ 1 2 3 4 5]
[3 4 2 6 7]]
Salida: [[3. 4. 2. 6. 7.]]
Explicación: serie de Chebyshev de la derivada.
método chebyshev.chebder
Para evaluar una serie de Chebyshev en los puntos x con una array de coeficientes multidimensional, NumPy proporciona una función llamada chebyshev.chebder() . Este método se usa para generar la serie Chebyshev 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 Chebyshev.
Sintaxis : chebyshev.chebder(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).
Devolver:
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 chebyshev.chebder() para diferenciar una serie de Chebyshev.
Python3
# import the numpy module import numpy # import chebyshev from numpy.polynomial import chebyshev # 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 chebyshev.chebder() method to differentiate # a chebyshev series. print("\nChebyshev series", chebyshev.chebder(coefficients_data))
Producción:
[[1 2 3 4 5] [3 4 2 6 7]] Shape of an array: (2, 5) Dimension: 2 Chebyshev series [[3. 4. 2. 6. 7.]]
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 chebyshev from numpy.polynomial import chebyshev # 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 chebyshev.chebder() method to differentiate a # chebyshev series. print("\nChebyshev series", chebyshev.chebder(coefficients_data, m=2, axis=1))
Producción:
[[ 1 2 3 4 5] [ 3 4 2 6 7] [43 45 2 6 7]] Shape of an array: (3, 5) Dimension: 2 Chebyshev series [[172. 96. 240.] [232. 144. 336.] [232. 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