以度为单位返回 Python 中复数自变量的角度


要返回复数自变量的角度,请在 Python 中使用 numpy.angle() 方法。该方法返回在复平面上的正实轴逆时针角度,范围为 (-pi,pi],其中 dtype 为 numpy.float64。第 1 个参数 z,一个复数或复数序列。第 2 个参数 deg,如果为 True,则返回角度为度,如果为 False(默认),则返回弧度。

步骤

首先,导入所需的库 −

import numpy as np

使用 array() 方法创建数组 −

arr = np.array([1.0, 1.0j, 1+1j])

显示该数组 −

print("Array...\n", arr)

获取数组的类型 −

print("\nOur Array type...\n", arr.dtype)

获取数组的维数 −

print("\nOur Array Dimension...\n",arr.ndim)

获取数组的形状 −

print("\nOur Array Shape...\n",arr.shape)

要返回复数自变量的角度,请在 Python Numpy 中使用 numpy.angle() 方法。该方法返回在复平面上的正实轴逆时针角度,范围为 (-pi, pi],其中 dtype 为 numpy.float64 −

print("\nResult...\n", np.angle(arr, deg = True))

示例

import numpy as np

# Create an array using the array() method
arr = np.array([1.0, 1.0j, 1+1j])

# Display the array
print("Array...\n", arr)

# Get the type of the array
print("\nOur Array type...\n", arr.dtype)

# Get the dimensions of the Array
print("\nOur Array Dimension...\n",arr.ndim)

# Get the shape of the Array
print("\nOur Array Shape...\n",arr.shape)

# To return the angle of the complex argument, use the numpy.angle() method in Python Numpy
# The method returns the counterclockwise angle from the positive real axis on the complex plane in the range (-pi, pi], with dtype as numpy.float64.
print("\nResult...\n", np.angle(arr, deg = True))

输出

Array...
[1.+0.j 0.+1.j 1.+1.j]

Our Array type...
complex128

Our Array Dimension...
1

Our Array Shape...
(3,)

Result...
[ 0. 90. 45.]

更新日期:28-Feb-2022

143 次浏览

开启您的 职业生涯

完成课程,以获得认证

开始
广告