जटिल तर्क के कोण को वापस करने के लिए, पायथन में numpy.angle() विधि का उपयोग करें। विधि जटिल समतल पर धनात्मक वास्तविक अक्ष से वामावर्त कोण लौटाती है (-pi,pi], dtype के रूप में numpy.float64। पहला पैरामीटर z, एक जटिल संख्या या जटिल संख्याओं का क्रम। दूसरा पैरामीटर, deg, अगर सही है तो डिग्री में वापसी कोण, अगर गलत है तो रेडियन (डिफ़ॉल्ट)।
कदम
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import numpy as np
सरणी () विधि का उपयोग करके एक सरणी बनाएं -
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.]