zpk DisplayFormat as time constant, how to access the actual Gain, Zeros and Poles
Show older comments
Hi there.
looking at transforming a transfer funtion into time constant format from polynominal format.
I evenutally came across the option in zpk, to have 'DisplayFormat','timeconstant' which outputs the results as expected.
So the transfer funtion is
which is then
.
which is then
.However, when I look at the z,p and k in
the values for z, p and k are from
, the roots of the num and den.
, the roots of the num and den.Anywhy to access the time constants directly, or just have to have work with the roots?
Thanks in advance
Gerard
G = tf([3 6],[1 4 3])
G1 = zpk(G)
[z,p,k] = zpkdata(G);
G1 = zpk(z,p,k,'DisplayFormat','timeconstant')
2 Comments
Paul
on 29 Apr 2023
Are complex poles/zeros a consideration? If so, what should the time constant be for those?
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB 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!







