How to find out the TimeUnits?

26 views (last 30 days)
SP
SP on 27 Jul 2015
Answered: Azzi Abdelmalek on 27 Jul 2015
I did this:
s = tf('s');
sys = s/(s^2 + 2*s + 10);
[mag, phase, wout] = bode(sys);
How can I find out the TimeUnits of wout? It was explained that: wout is "Response frequencies, returned as a row vector of frequency points. Frequency values are in radians per TimeUnit, where TimeUnit is the value of the TimeUnit property of sys"

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 27 Jul 2015
get(sys,'TimeUnit')
Or
sys.TimeUnit

More Answers (0)

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!