13 lines
350 B
Mathematica
13 lines
350 B
Mathematica
|
%%
|
||
|
clear; close all; clc;
|
||
|
|
||
|
%% Load the identified transfer functions
|
||
|
load('./mat/Gd_ol_cl.mat', 'Gd_ol_20', 'Gd_cl_20');
|
||
|
|
||
|
%%
|
||
|
freqs = logspace(0, 3, 1000);
|
||
|
bodeFig({Gd_ol_20(1, 1), Gd_cl_20(1, 1)}, freqs, struct('ylabel', 'Amplitude [m/m]'))
|
||
|
legend({'OL', 'CL'});
|
||
|
|
||
|
exportFig('transmissibility_ol_cl', 'half-normal', struct('path', 'identification'));
|