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

คำนวณรากที่สองของอินพุตที่ซับซ้อนด้วย scimath ใน Python


ในการคำนวณสแควร์รูทของอินพุต ให้ใช้เมธอด emath.sqrt() ใน Python Numpy เมธอดส่งคืนรากที่สองของ x ถ้า x เป็นสเกลาร์ ก็จะออกมา ไม่เช่นนั้นอาร์เรย์จะถูกส่งคืน พารามิเตอร์ x คือค่าอินพุต สำหรับองค์ประกอบอินพุตเชิงลบ ค่าที่ซับซ้อนจะถูกส่งคืน

ขั้นตอน

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

import numpy as np

การป้อนข้อมูลที่ซับซ้อนอย่างชัดเจนโดยใช้วิธีที่ซับซ้อน () -

a = complex(-9.0, 0.0)

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

print("Display the complex value...\n",a)

ในการคำนวณสแควร์รูทของอินพุต ให้ใช้เมธอด emath.sqrt() ใน Python Numpy -

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