Cannot run linearSystemAnalyzer (Linear System Analyzer)
Show older comments
Altough Control Systems Toolbox is installed in my system, I cannot run "linearSystemAnalyzer". Also "help linearSystemAnalyzer" returns error message. Is there anyone who helps me.
Answers (1)
TAHER
on 12 May 2024
0 votes
% المعلمات
R = 1; % المقاومة
L = 0.5; % اللفة
Ke = 0.1; % الثابت الكهروميكانيكي
Kt = 0.1; % الثابت الميكانيكي
% نموذج المحرك DC
num = [Kt];
den = [L R];
% تحويل النموذج إلى تمثيل مناسب
sys = tf(num, den);
% استخراج describing function
describingFunction = linearSystemAnalyzer('FrequencyRange', [0 100]);
describingFunction(sys);
Categories
Find more on Time-Domain Analysis 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!