Clear Filters
Clear Filters

Denominator for the nth order inertial term.

1 view (last 30 days)
Hello,
I was trying to calculate Gain margin by margin(sys) for my
sys = tf(num, dem);
where
num = 1.0506;
My question is how to create denominator for 5th order inertial term with const time T = 4s.

Answers (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 9 Dec 2023
Understood your question correctly, that would be somewhat like e.g.:
num = 1.0506;
SYS = tf(num, [1 1 1 1 1 1/4]); % 5th order system
margin(SYS)

Categories

Find more on Numerical Integration and Differential Equations in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!