입력의 제곱근을 계산하려면 Python Numpy에서 emath.sqrt() 메서드를 사용합니다. 이 메서드는 x의 제곱근을 반환합니다. x가 스칼라이면 out이고 그렇지 않으면 배열이 반환됩니다. 매개변수 x는 입력 값입니다. 음수 입력 요소의 경우 복소수 값이 반환됩니다.
단계
먼저 필요한 라이브러리를 가져옵니다 -
import numpy as np
complex() 메서드를 사용하여 명시적으로 복잡한 입력 -
a = complex(-9.0, 0.0)
배열 표시 -
print("Display the complex value...\n",a)
입력의 제곱근을 계산하려면 Python Numpy에서 emath.sqrt() 메서드를 사용하십시오 -
print("\nResult...\n",np.emath.sqrt(a))
예
import numpy as np # Explicity using complex() method a = complex(-9.0, 0.0) # Display the array print("Display the complex value...\n",a) # To compute the square root of input, use the emath.sqrt() method in Python Numpy # The method returns the square root of x. If x was a scalar, so is out, otherwise an array is returned. print("\nResult...\n",np.emath.sqrt(a))
출력
Display the complex value... (-9+0j) Result... 3j