একটি বহুপদকে হারমাইট সিরিজে রূপান্তর করতে, Python Numpy-এ hermite.poly2herm() পদ্ধতিটি ব্যবহার করুন। সর্বনিম্ন ডিগ্রী থেকে সর্বোচ্চ পর্যন্ত, সমতুল্য হারমাইট সিরিজের সহগগুলির একটি অ্যারেতে অর্ডার করা একটি বহুপদীর সহগ প্রতিনিধিত্বকারী একটি বিন্যাসকে রূপান্তর করুন সর্বনিম্ন থেকে সর্বোচ্চ ডিগ্রী। পদ্ধতিটি সমতুল্য হার্মাইট সিরিজের সহগ সমন্বিত একটি 1-ডি অ্যারে প্রদান করে। পরামিতি pol, একটি 1-D অ্যারে যাতে বহুপদী সহগ থাকে
পদক্ষেপ
প্রথমে, প্রয়োজনীয় লাইব্রেরি আমদানি করুন -
import numpy as np from numpy.polynomial import hermite 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.poly2herm() পদ্ধতি ব্যবহার করুন −
print("\nResult (polynomial to hermite)...\n",H.poly2herm(c))
উদাহরণ
numpy থেকে numpy.পলিনোমিয়াল ইমপোর্ট হার্মাইট H# হিসাবেimport numpy as np from numpy.polynomial import hermite 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.poly2herm() method in Python Numpy print("\nResult (polynomial to hermite)...\n",H.poly2herm(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)... [6.25 4. 4.5 0.5 0.3125]