दी गई जटिल जड़ों के साथ एक हरमाइट श्रृंखला उत्पन्न करने के लिए, पाइथन नम्पी में hermite.hermfromroots() विधि का उपयोग करें। विधि गुणांक की 1-डी सरणी देता है। यदि सभी मूल वास्तविक हैं तो आउट एक वास्तविक सरणी है, यदि कुछ जड़ें जटिल हैं, तो परिणाम जटिल है, भले ही परिणाम में सभी गुणांक वास्तविक हों। पैरामीटर रूट रूट वाले अनुक्रम हैं।
कदम
सबसे पहले, आवश्यक पुस्तकालय आयात करें -
from numpy.polynomial import hermite as H
दी गई जटिल जड़ों के साथ एक हरमाइट श्रृंखला उत्पन्न करने के लिए, hermite.hermfromroots() विधि का उपयोग करें -
j = complex(0,1) print("Result...\n",H.hermfromroots((-j, j)))
डेटाटाइप प्राप्त करें -
print("\nType...\n",H.hermfromroots((-j, j)).dtype)
आकार प्राप्त करें -
print("\nShape...\n",H.hermfromroots((-j, j)).shape)
उदाहरण
from numpy.polynomial import hermite as H # To generate a Hermite series with given complex roots, use the hermite.hermfromroots() method in Python Numpy. # The method returns a 1-D array of coefficients. If all roots are real then out is a real array, if some of the roots are complex, then out is complex even if all the coefficients in the result are real. # The parameter roots are the sequence containing the roots. j = complex(0,1) print("Result...\n",H.hermfromroots((-j, j))) # Get the datatype print("\nType...\n",H.hermfromroots((-j, j)).dtype) # Get the shape print("\nShape...\n",H.hermfromroots((-j, j)).shape)
आउटपुट
Result... [1.5 +0.j 0. +0.j 0.25+0.j] Type... complex128 Shape... (3,)