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

Python에서 주어진 복소수 근을 사용하여 Hermite_e 시리즈의 근을 계산합니다.

<시간/>

Hermite_e 시리즈의 근을 계산하려면 PythonNumpy에서 hermite_e.hermeroots() 메서드를 사용하십시오. 이 메서드는 계열의 루트 배열을 반환합니다. 모든 근이 진짜이면 out도 진짜이고 그렇지 않으면 복잡합니다.

매개변수 c는 계수의 1차원 배열입니다. 근 추정치는 컴패니언 행렬의 고유값으로 얻어지며, 복소 평면의 원점에서 멀리 떨어진 근은 그러한 값에 대한 계열의 수치적 불안정성으로 인해 큰 오류를 가질 수 있습니다. 다중도가 1보다 큰 근은 또한 그러한 점 근처의 계열 값이 근의 오류에 상대적으로 둔감하기 때문에 더 큰 오류를 표시합니다. 원점 근처의 고립된 뿌리는 Newton의 방법을 몇 번 반복하여 개선할 수 있습니다.

단계

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

from numpy.polynomial import hermite_e as H

Hermite_e 시리즈의 근을 계산 -

j = complex(0,1)
print("Result...\n",H.hermeroots((-j, j)))

데이터 유형 가져오기 -

print("\nType...\n",H.hermeroots((-j, j)).dtype)

모양 가져오기 -

print("\nShape...\n",H.hermeroots((-j, j)).shape)

예시

from numpy.polynomial import hermite_e as H

# To compute the roots of a Hermite_e series, use the hermite_e.hermeroots() method in Python Numpy.
# The method returns an array of the roots of the series. If all the roots are real, then out is also real, otherwise it is complex..

# The parameter, c is a 1-D array of coefficients.
j = complex(0,1)
print("Result...\n",H.hermeroots((-j, j)))

# Get the datatype
print("\nType...\n",H.hermeroots((-j, j)).dtype)

# Get the shape
print("\nShape...\n",H.hermeroots((-j, j)).shape)

출력

Result...
   [1.+0.j]

Type...
complex128

Shape...
(1,)