使用 Python 中的 scimath 计算复数输入的平方根
要计算输入的平方根,请使用 Python Numpy 中的 emath.sqrt() 方法。该方法返回 x 的平方根。如果 x 是一个标量,那么输出也是,否则返回一个数组。参数 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
广告