Simulation_Linear discrete-time system models
前頭:
1
2
3
4
5
6
7
close all % 全てのグラフfigureを閉じる
clear %メモリから変数と関数を消去
set(0,'DefaultAxesFontName','Times New Roman') %ローマ字変換
set(0,'DefaultAxesFontSize',12) %グラフの座標の文字サイズ
MATLAB でディジタル信号を扱う時に,そのまま差分方程式を使える.z 変換などが要らない.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
clear
close all
set(0,'DefaultAxesFontName','Times New Roman')
set(0,'DefaultAxesFontSize',12)
%--------------------------------------------------------------------
% 同定ゼミ宿題pdf p.13 線形離散時間システムモデルのシミュレーション
% 4/13 by YANG
%---------------------------------------------------------------------
%初期パラメータ
Tmax=10;
samp=0.01;
n=Tmax/samp;
u=rand(1,n+1); %入力
NSR = 0.0;
%NSR 0, 0.1 0.2
a1=-1.5;
a2=0.7;
b1=1.0;
b2=0.5;
t = zeros(1, n+1);
x = zeros(1, n+1); %真の出力
y = zeros(1, n+1); %観察値
for k=3:n+1
t(k)=(k-1)*samp;
x(k) = -a1*x(k-1)-a2*x(k-2)+b1*u(k-1)+b2*u(k-2);
end
%ゼロ平均のガウス分布乱数=正規分布
mu=0 ;%平均値
sigma=NSR*std(x) ;%標準偏差 NSR=sigma/std(x)
v = sigma * randn(1,n+1) + mu;
for k=3:n+1
y(k) = x(k)+v(k);
end
subplot(2,2,1); plot(t,u); title('ut');
subplot(2,2,2); plot(t,x); title('xt');
subplot(2,2,3); plot(t,y); title('yt');
subplot(2,2,4); plot(t,v); title('vt');
This post is licensed under CC BY 4.0 by the author.