esort

Sort continuous-time poles by real part.

📝 Syntax

  • s = esort(p)

  • [s, ndx] = esort(p)

📥 Input argument

  • p - p: a vector

📤 Output argument

  • 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.

💡 Example

p = [-2.410 + 5.573i;
-2.410 - 5.573i;
1.503;
-0.972;
-2.590];
[s, ndx] = esort(p)

🔗 See also

dsort.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?