LTI data extraction

3 ビュー (過去 30 日間)
Ryan0101
Ryan0101 2012 年 3 月 23 日
Hello,
I have a continuous simulink model with mulitple transfer functions that I put into the LTI toolkit, but I would like to extract the bode plot (Magnitude and phase) into variable names so I can compare it to a discrete version I wrote. Is there a way to extract the data? or should I not use LTI and go about it differently?
Thanks
here is the LTI code I used:
mdl = 'MODEL_Continuous'; % set to file name of simulink model
io = getlinio(mdl) % get i/o signals of mdl
op = operspec(mdl)
op = findop(mdl,op) % calculate model operating point
lin = linearize(mdl,op,io) % compute state space model of lin sys
ltiview(lin)

採用された回答

Jarrod Rivituso
Jarrod Rivituso 2012 年 3 月 23 日
I believe you can use the bode function for that...
[mag,phase,freqs] = bode(lin)
Also, if you are comparing two systems, you might want to actually specify the frequencies of interest
%Create frequency vector with 100 points between 10^-1 .. 10^2
freqs = logspace(-1,2,100);
%Get bode output at those frequencies
[mag,phase] = bode(lin,freqs)
Hope this helps!
  1 件のコメント
Ryan0101
Ryan0101 2012 年 3 月 23 日
yep I totally forgot about plain old bode()
Thanks!

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by