Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

ส่งคืนส่วนที่แท้จริงของอาร์กิวเมนต์ที่ซับซ้อนใน Python


หากต้องการคืนค่าส่วนที่แท้จริงของอาร์กิวเมนต์ที่ซับซ้อน ให้ใช้เมธอด numpy.real() ใน Python ชุดรูปแบบส่งคืนองค์ประกอบที่แท้จริงของอาร์กิวเมนต์ที่ซับซ้อน ถ้า val เป็นค่าจริง ประเภทของ val จะถูกใช้สำหรับผลลัพธ์ หาก val มีองค์ประกอบที่ซับซ้อน ประเภทที่ส่งคืนจะเป็นแบบลอย พารามิเตอร์ที่ 1 val คืออาร์เรย์อินพุต

ขั้นตอน

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import numpy as np

สร้างอาร์เรย์โดยใช้เมธอด array() -

arr = np.array([56.+0.j , 27.+0.j , 68.+0.j , 23.+0.j])

แสดงอาร์เรย์ -

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

ตรวจสอบขนาด -

print("\nDimensions of our Array...\n",arr.ndim)

รับประเภทข้อมูล -

print("\nDatatype of our Array object...\n",arr.dtype)

รับรูปร่าง -

print("\nShape of our Array...\n",arr.shape)

หากต้องการคืนค่าส่วนที่แท้จริงของอาร์กิวเมนต์ที่ซับซ้อน ให้ใช้เมธอด numpy.real() ใน Python ชุดรูปแบบส่งคืนองค์ประกอบที่แท้จริงของอาร์กิวเมนต์ที่ซับซ้อน ถ้า val เป็นค่าจริง ประเภทของ val จะถูกใช้สำหรับผลลัพธ์ หาก val มีองค์ประกอบที่ซับซ้อน ประเภทที่ส่งคืนจะเป็นแบบลอย พารามิเตอร์ที่ 1 val คืออาร์เรย์อินพุต -

print("\nResult (Real part)...\n",np.real(arr))

ตัวอย่าง

import numpy as np

# Create an array using the array() method
arr = np.array([56.+0.j , 27.+0.j , 68.+0.j , 23.+0.j])

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

# Check the Dimensions
print("\nDimensions of our Array...\n",arr.ndim)

# Get the Datatype
print("\nDatatype of our Array object...\n",arr.dtype)

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

# To return the real part of the complex argument, use the numpy.real() method in Python
print("\nResult (Real part)...\n",np.real(arr))

ผลลัพธ์

Our Array...
[56.+0.j 27.+0.j 68.+0.j 23.+0.j]

Dimensions of our Array...
1

Datatype of our Array object...
complex128

Shape of our Array...
(4,)

Result (Real part)...
[56. 27. 68. 23.]