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

ประเมินชุด Chebyshev ที่จุด x ใน Python


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

พารามิเตอร์ตัวที่ 2, C, อาร์เรย์ของสัมประสิทธิ์ที่เรียงลำดับเพื่อให้สัมประสิทธิ์สำหรับเงื่อนไขของดีกรี n อยู่ใน c[n] ถ้า c เป็นหลายมิติ ดัชนีที่เหลือจะระบุพหุนามหลายตัว ในกรณีสองมิติ สัมประสิทธิ์อาจคิดว่าจัดเก็บไว้ในคอลัมน์ของค

พารามิเตอร์ตัวที่ 3 เทนเซอร์ ถ้า True รูปร่างของอาร์เรย์สัมประสิทธิ์จะถูกขยายด้วยตัวที่ด้านขวา หนึ่งตัวสำหรับแต่ละมิติของ x สเกลาร์มีมิติ 0 สำหรับการดำเนินการนี้ ผลที่ได้คือทุกคอลัมน์ของสัมประสิทธิ์ใน c ถูกประเมินสำหรับทุกองค์ประกอบของ x หากเป็นเท็จ x จะถูกถ่ายทอดผ่านคอลัมน์ของ c สำหรับการประเมิน คีย์เวิร์ดนี้มีประโยชน์เมื่อ c เป็นแบบหลายมิติ ค่าเริ่มต้นคือ True

ขั้นตอน

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

import numpy as np
from numpy.polynomial import chebyshev as C

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

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

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

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)

ในการประเมินชุด Chebyshev ที่จุด x ให้ใช้วิธี chebyshev.chebval(() ใน Python Numpy -

print("\nResult...\n",C.chebval(1,c))

ตัวอย่าง

import numpy as np
from numpy.polynomial import chebyshev as C

# Create an array of coefficients
c = np.array([1, 2, 3])

# 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 evaluate a Chebyshev series at points x, use the chebyshev.chebval(() method in Python Numpy
print("\nResult...\n",C.chebval(1,c))

ผลลัพธ์

Our Array...
[1 2 3]

Dimensions of our Array...
1

Datatype of our Array object...
int64

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

Result...
6.0