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

แปลงพหุนามเป็นอนุกรม Hermite_e ใน Python


ในการแปลงพหุนามเป็นอนุกรม Hermite ให้ใช้เมธอด hermite_e.poly2herme() ใน PythonNumpy แปลงอาร์เรย์ที่แสดงสัมประสิทธิ์ของพหุนามที่เรียงจากดีกรีต่ำสุดไปสูงสุด เป็นอาร์เรย์ของสัมประสิทธิ์ของอนุกรมเฮอร์ไมต์ที่เทียบเท่ากัน โดยเรียงลำดับจากดีกรีต่ำสุดไปสูงสุด วิธีการส่งคืนอาร์เรย์ 1-D ที่มีค่าสัมประสิทธิ์ของอนุกรม Hermite ที่เทียบเท่ากัน พารามิเตอร์ pol คืออาร์เรย์ 1-D ที่มีค่าสัมประสิทธิ์พหุนาม

ขั้นตอน

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

import numpy as np
from numpy.polynomial import hermite_e as H

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

c = np.array([1, 2, 3, 4, 5])

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

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

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

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

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

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

รับรูปร่าง -

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

ในการแปลงพหุนามเป็นอนุกรม Hermite ให้ใช้เมธอด hermite_e.poly2herme() ใน PythonNumpy แปลงอาร์เรย์ที่แทนค่าสัมประสิทธิ์ของพหุนามที่เรียงลำดับจากระดับต่ำสุดไปสูงสุด เป็นอาร์เรย์ของสัมประสิทธิ์ของอนุกรมเฮอร์ไมต์ที่เทียบเท่ากัน โดยเรียงลำดับจากระดับต่ำสุดไปสูงสุด -

print("\nResult (polynomial to hermite_e)...\n",H.poly2herme(c))

ตัวอย่าง

import numpy as np
from numpy.polynomial import hermite_e as H

# Create an array using the numpy.array() method
c = np.array([1, 2, 3, 4, 5])

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

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

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

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

# To convert a polynomial to a Hermite series, use the hermite_e.poly2herme() method in Python Numpy
print("\nResult (polynomial to hermite_e)...\n",H.poly2herme(c))

ผลลัพธ์

Our Array...
   [1 2 3 4 5]

Dimensions of our Array...
1

Datatype of our Array object...
int64

Shape of our Array object...
(5,)

Result (polynomial to hermite_e)...
   [19. 14. 33. 4. 5.]