ในการประเมินชุด Laguerre ที่อาร์เรย์ของจุด x ให้ใช้เมธอด polynomial.laguerre.lagval() ในPython Numpy พารามิเตอร์ที่ 1 คือ x ถ้า x เป็นรายการหรือทูเพิล ค่านั้นจะถูกแปลงเป็น ndarray ไม่เช่นนั้น จะไม่เปลี่ยนแปลงและถือเป็นสเกลาร์ ไม่ว่าในกรณีใด x หรือองค์ประกอบของมันจะต้องสนับสนุนการบวกและการคูณด้วยตัวมันเองและองค์ประกอบของ c
พารามิเตอร์ตัวที่ 2, C, อาร์เรย์ของสัมประสิทธิ์ที่จัดลำดับเพื่อให้สัมประสิทธิ์สำหรับเงื่อนไขของดีกรี nare อยู่ใน c[n] ถ้า c มีหลายมิติ ดัชนีที่เหลือจะระบุพหุนามพหุนามหลายตัว ในกรณีสองมิติ สัมประสิทธิ์อาจคิดว่าจัดเก็บไว้ในคอลัมน์ของค
พารามิเตอร์ตัวที่ 3 เทนเซอร์ ถ้า True รูปร่างของอาร์เรย์สัมประสิทธิ์จะถูกขยายด้วยตัวที่อยู่ทางขวา หนึ่งตัวสำหรับแต่ละมิติของ x สเกลาร์มีมิติ 0 สำหรับการดำเนินการนี้ ผลที่ได้คือทุกคอลัมน์ของสัมประสิทธิ์ใน c ถูกประเมินสำหรับทุกองค์ประกอบของ x หากเป็นเท็จ x จะถูกถ่ายทอดบนคอลัมน์ของ c สำหรับการประเมิน คีย์เวิร์ดนี้มีประโยชน์เมื่อ c เป็นแบบหลายมิติ ค่าเริ่มต้นคือ True
ขั้นตอน
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import numpy as np from numpy.polynomial import laguerre as L
สร้างอาร์เรย์ของสัมประสิทธิ์ -
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)
ในการประเมินชุด Laguerre ที่อาร์เรย์ของจุด x ให้ใช้เมธอด polynomial.laguerre.lagval() ในPython Numpy -
x = np.array([[1,2],[3,4]]) print("\nResult...\n",L.lagval(x,c))
ตัวอย่าง
import numpy as np from numpy.polynomial import laguerre as L # 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 Laguerre series at array of points x, use the polynomial.laguerre.lagval() method in Python Numpy x = np.array([[1,2],[3,4]]) print("\nResult...\n",L.lagval(x,c))
ผลลัพธ์
Our Array... [1 2 3] Dimensions of our Array... 1 Datatype of our Array object... int64 Shape of our Array object... (3,) Result... [[-0.5 -4. ] [-4.5 -2. ]]