Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 독립 변수로 Legendre 급수 곱하기

<시간/>

르장드르 시리즈 c에 x(x는 독립 변수)를 곱하려면 Python Numpy에서 polynomial.laguerre.legmulx() 메서드를 사용합니다. 이 메서드는 곱셈의 결과를 나타내는 배열을 반환합니다. 두 르장드르 시리즈 c1 - c2의 차이를 반환합니다. 인수는 최하위 항에서 가장 높은 항으로 정렬된 계수의 시퀀스입니다. 즉, [1,2,3]은 P_0 + 2*P_1 + 3*P_2 계열을 나타냅니다. 매개변수 c는 낮은 것에서 높은 것으로 정렬된 르장드르 급수 계수의 1차원 배열입니다.

단계

먼저 필요한 라이브러리를 가져옵니다 -

import numpy as np
from numpy.polynomial import laguerre as L

배열 생성 -

c = np.array([1, 2, 3])

배열 표시 -

print("Our Array...\n",c)

치수 확인 -

print("\nDimensions of our Array...\n",c.ndim)

데이터 유형 가져오기 -

print("\nDatatype of our Array object...\n",c.dtype)

모양 가져오기 -

print("\nShape of our Array object...\n",c.shape)

르장드르 시리즈 c에 x를 곱하려면(여기서 x는 독립 변수임) Python Numpy에서 다항식.laguerre.legmulx() 메서드를 사용합니다. -

print("\nResult....\n",L.legmulx(c))

예시

import numpy as np
from numpy.polynomial import legendre as L

# Create an array
c = np.array([1, 2, 3])

# 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 multiply the Legendre series c by x, where x is the independent variable, use the polynomial.laguerre.legmulx() method in Python Numpy
print("\nResult....\n",L.legmulx(c))

출력

Our Array...
   [1 2 3]

Dimensions of our Array...
1

Datatype of our Array object...
int64

Shape of our Array object...
(3,)

Result....
   [0.66666667 2.2 1.33333333 1.8 ]