esort
Sort continuous-time poles by real part.
📝Syntax
s = esort(p)
[s, ndx] = esort(p)
📥Input Arguments
Parameter Description
p p: a vector
📤Output Arguments
Parameter Description
s sorted vector by real part.
📄Description

esort arranges the continuous-time poles within the vector p based on their real parts.

Unstable eigenvalues take precedence at the beginning of the sorted list, and the rest of the poles are organized in descending order according to their real parts.

💡Examples
p = [-2.410 + 5.573i;
-2.410 - 5.573i;
1.503;         
-0.972;         
-2.590];  
[s, ndx] = esort(p)    
  
🔗See Also
dsort
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub