Transmission zeros created when selecting outputs in state-space system
7 views (last 30 days)
Show older comments
I have a MIMO state-space system with inputs of rotor speed (quad-rotor plant) and outputs of the states (U, V, W, Phi, Theta, P, Q, R). This system does not have any transmission zeros. As I create a smaller plant with the same inputs and a reduced output set (W, Phi, Theta, R), two transmission zeros are created. I arrive at the same result when using balred() and minreal() to reduce the plant order.
Is it possible for a plant to create these transmission zeros or is this an artifact of how MATLAB reduces the plant model? Can I trust that these transmission zeros are real?
Thank you for your time, Clay
1 Comment
Martin Evans
on 14 Jan 2019
I have exactly the same issue and I haven't been able to work it out. I can only guess it's an artifact unintentionally added in the balred function.
Answers (1)
Shreyansh
on 27 Apr 2025
Let's walk through it carefully.
First, yes, it is absolutely possible that transmission zeros appear when you reduce the number of outputs (even without changing the inputs). Here's why:
- Transmission zeros are related to the ability of inputs to affect outputs through the system dynamics.
- When you select a subset of outputs, the "pathways" between inputs and outputs change. In the full system, certain cancellations may not occur because of other outputs balancing things out.
- When you drop some outputs, you can "uncover" cancellations (zeros) that were not obvious or did not affect the full system.
- So, the new system (inputs → fewer outputs) is a different transfer matrix, and it can naturally have different transmission zeros, including new ones.
Now regarding your MATLAB reductions (balred(), minreal()):
- balred() tries to reduce system order based on Hankel singular values — removing states that are "less controllable/observable."
- minreal() cancels pole-zero pairs that are exactly (or nearly) identical.
Neither method fabricates transmission zeros artificially. However, both can sometimes slightly move system dynamics due to small numerical tolerances, especially in lightly damped or nearly uncontrollable modes.
But based on what you described — you first selected outputs, and then used balred() and minreal() — it's very likely that those new transmission zeros are real and reflect the changed input-output structure.
1 Comment
Paul
on 27 Apr 2025
To illustrate with a simple example:
Mtf = [tf([1 1],[1 4 1]);1]
Mss = ss(Mtf);
Mss doesn't have any transmission zeros
tzero(Mss)
But selecting only the first output does result in a transmission zero
tzero(Mss(1,1))
See Also
Categories
Find more on Dynamic System Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!