以度為單位返回 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 次瀏覽

開啟您的 職業生涯

完成課程,以獲得認證

開始
廣告
© . All rights reserved.