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

สร้างความแตกต่างให้กับชุด Hermite_e ด้วยสัมประสิทธิ์หลายมิติบนแกนเฉพาะใน Python


หากต้องการแยกความแตกต่างของซีรีส์ Hermite_e ให้ใช้เมธอด hermite_e.hermeder() ใน Python พารามิเตอร์ที่ 1 c คืออาร์เรย์ของสัมประสิทธิ์อนุกรม Hermite_e หาก c มีหลายมิติ แกนที่ต่างกันจะสัมพันธ์กับตัวแปรต่างๆ โดยมีระดับในแต่ละแกนที่กำหนดโดยดัชนีที่เกี่ยวข้อง

พารามิเตอร์ตัวที่ 2 m คือจำนวนอนุพันธ์ที่นำมาต้องไม่เป็นค่าลบ (ค่าเริ่มต้น:1). พารามิเตอร์ตัวที่ 3 scl คือสเกลาร์ ดิฟเฟอเรนติเอชันแต่ละตัวคูณด้วย scl ผลลัพธ์ที่ได้คือการคูณด้วย scl**m ใช้สำหรับการเปลี่ยนแปลงเชิงเส้นของตัวแปร (ค่าเริ่มต้น:1). พารามิเตอร์ตัวที่ 4 แกน คือ Axis ที่ใช้หาอนุพันธ์ (ค่าเริ่มต้น:0).

ขั้นตอน

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

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

สร้างอาร์เรย์หลายมิติของสัมประสิทธิ์ -

c = np.arange(4).reshape(2,2)

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

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_e ให้ใช้เมธอด hermite_e.hermeder() ใน Python -

print("\nResult...\n",H.hermeder(c, axis = 1))

ตัวอย่าง

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

# Create a multidimensional array of coefficients
c = np.arange(4).reshape(2,2)

# 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 differentiate a Hermite_e series, use the hermite_e.hermeder() method in Python
print("\nResult...\n",H.hermeder(c, axis = 1))

ผลลัพธ์

Our Array...
[[0 1]
[2 3]]

Dimensions of our Array...
2

Datatype of our Array object...
int64

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

Result...
[[1.]
[3.]]