- Introduction
- What is the Routh-Hurwitz Criterion?
- How to Use
- Code Explanation
- Installation
- Contributing
- License
This repository contains a Python implementation of the Routh-Hurwitz criterion, a method used to determine the stability of a linear system based on the coefficients of its characteristic polynomial.
The Routh-Hurwitz criterion is a mathematical test that provides conditions for the stability of a system by analyzing the signs of the determinants of specific matrices derived from the system's characteristic polynomial.
To utilize the Routh-Hurwitz criterion, follow these steps:
- Import the necessary libraries and functions.
- Define the characteristic polynomial.
- Extract the coefficients and create the Routh matrix.
- Call the
criterion_routh_hurwitz
function to evaluate stability.