<< dsort | Control System functions | evalfr >> |
s = esort(p) |
[s, ndx] = esort(p) |
p: a vector
sorted vector by real part.
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.
p = [-2.410 + 5.573i;
-2.410 - 5.573i;
1.503;
-0.972;
-2.590];
[s, ndx] = esort(p)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET