代码搜索结果
找到约 10,000 项符合
1 的代码
exa1_46_1.m
% exa1-46_zero_pole_gain.m for example 1-46
% zero/pole gain
clear all;
b=[0.3 0.2]; %sytem parameter
a=[1 -0.4 -0.7]; %sytem parameter
zr=roots(b)
pk=roots(a)
g=b(1)/a(1)
exa1_49_1.m
% exa1-49_state_space_2nd_order_representaion.m for example 1-49
% from state-space to 2nd ordered representation
clear all;
b=[0.3 0.2]; %sytem parameter
a=[1 -0.4 -0.7]; %sytem parameter
[A,B