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

สร้างชุด Hermite_e โดยมีรากที่ซับซ้อนใน Python


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

ขั้นตอน

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

from numpy.polynomial mport hermite_e as H

สร้างชุด Hermite_e ที่มีรากที่ซับซ้อน -

j = complex(0,1)
print("Result...\n",H.hermefromroots((-j, j)))

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

print("\nType...\n",H.hermefromroots((-j, j)).dtype)

รับรูปร่าง -

print("\nShape...\n",H.hermefromroots((-j, j)).shape)Create an array

ตัวอย่าง

from numpy.polynomial import hermite_e as H

j = complex(0,1)
print("Result...\n",H.hermefromroots((-j, j)))

# Get the datatype
print("\nType...\n",H.hermefromroots((-j, j)).dtype)

# Get the shape
print("\nShape...\n",H.hermefromroots((-j, j)).shape)

ผลลัพธ์

Result...
   [2.+0.j 0.+0.j 1.+0.j]

Type...
complex128

Shape...
(3,)