作成したプログラムを上げます。
- Hurwitzテスト
- Kharitonov
のプログラムです。
Hurwitzについてはサイトで実装しています。
コマンドライン上で(windowsだったら Windows key + R -> cmd と入力)以下のコマンドを入力
pip install git+https://github.com/KMDMNAK/Hurwitz-Test.git
Pythonコマンドラインで以下を実行
from hurwitz.hurwitzTest import HurwitzStabililtyTestForRealPolymonials
coefficients = [2,3,4,5,6,7] # 2x^5+3x^4+4x^3+5x^2+6x+7についての判定
H = HurwitzStabililtyTestForRealPolymonials(coefficients)
result = H.execute() # true or false