Legendre বহুপদী থেকে ছোট ট্রেলিং সহগ অপসারণ করতে, Python numpy-এ legendre.legtrim() মেথড ব্যবহার করুন। পদ্ধতিটি একটি 1-d অ্যারে প্রদান করে যার পিছনের শূন্য সরানো হয়। ফলাফলের সিরিজ খালি হলে, একটি একক শূন্য সমন্বিত একটি সিরিজ ফেরত দেওয়া হয়।
"ছোট" মানে "পরম মানের ছোট" এবং প্যারামিটার টোল দ্বারা নিয়ন্ত্রিত হয়; "ট্রেলিং" মানে সর্বোচ্চ ক্রম সহগ(গুলি), যেমন, [0, 1, 1, 0, 0] (যা 0 + x + x**2 + 0*x**3 + 0*x**4 প্রতিনিধিত্ব করে) 3-য় এবং 4-তম ক্রম সহগ উভয়ই "ছাঁটা" হবে। পরামিতি c হল সহগগুলির একটি 1-d অ্যারে, সর্বনিম্ন ক্রম থেকে সর্বোচ্চ পর্যন্ত ক্রম। পরামিতি টোল হল টোলের চেয়ে কম বা সমান পরম মান সহ ট্রেলিং উপাদানগুলি সরানো হয়৷
পদক্ষেপ
প্রথমে, প্রয়োজনীয় লাইব্রেরি আমদানি করুন -
import numpy as np from numpy.polynomial import legendre as L
numpy.array() পদ্ধতি ব্যবহার করে একটি অ্যারে তৈরি করুন। এটি সহগগুলির 1-ডি অ্যারে −
c = np.array([0,5,0, 0,9,0])
অ্যারে প্রদর্শন করুন −
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)
Legendre বহুপদী থেকে ছোট ট্রেলিং সহগ অপসারণ করতে, Python numpy-
-এ legendre.legtrim() পদ্ধতি ব্যবহার করুনprint("\nResult...\n",L.legtrim(c))
উদাহরণ
import numpy as np from numpy.polynomial import legendre as L # Create an array using the numpy.array() method # This is the 1-d array of coefficients c = np.array([0,5,0, 0,9,0]) # 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 remove small trailing coefficients from Legendre polynomial, use the legendre.legtrim() method in Python numpy print("\nResult...\n",L.legtrim(c))-এ legendre.legtrim() পদ্ধতি ব্যবহার করুন
আউটপুট
Our Array... [0 5 0 0 9 0] Dimensions of our Array... 1 Datatype of our Array object... int64 Shape of our Array object... (6,) Result... [0. 5. 0. 0. 9.]