normal rank calculation with tzero
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Consider the following transfer matrix:
s = tf('s')
G = [1/(s+2) 0; 0 1/((s+1)*(s+3))]
the calcultation of the normal rank of G is done by:
[z, nrank] = tzero(G)
and the result is
nrank = 1.
I was wondering, because in my understanding G will never lose rank for any
and the normal rank should be equal to 2. So far, my observation is, that if the number of poles in the part transfer functions is equal,
i.e.
G = [1/(s+2) 0; 0 1/(s+1)]
[z, nrank] = tzero(G)
the result meets with my expectations (nrank = 2).
So my question is, am I missing something when using tzero or is there a general problem of understanding regarding the normal rank of a transfer matrix?
Many thanks in advance.
2 commentaires
Paul
le 27 Mar 2025
Hi Andreas,
I took a look and I agree that the first case seems odd. I tried lots of variation in the tol input to tzero, but that had no effect. Unfortunately, the heavy lifting for tzero, at least for the first case, is in a .mex file, so I couldn't dig into the code.
If you open a case with Tech Support, would you mind posting back here with a summary of their response?
Réponse acceptée
Christian
le 7 Avr 2025
We have identified that this is indeed a bug in "tzero".
We are actively working on a fix, and aim to provide it as soon as possible.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Stability Analysis dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!