MATLABでシステム同定用のM系列信号を生成する。
ツールボックスがないと動かない可能性があるので注意。
結果がこんな感じ。
![](http://sironekolab.com/wp/wp-content/uploads/2021/06/untitled.bmp)
コード
N = 350;
u = idinput(N,'rbs');
figure
plot(u)
ylim([-1.5,1.5])
xlabel('t[s]')
ylabel('y(t)')
MATLABでシステム同定用のM系列信号を生成する。
ツールボックスがないと動かない可能性があるので注意。
結果がこんな感じ。
コード
N = 350;
u = idinput(N,'rbs');
figure
plot(u)
ylim([-1.5,1.5])
xlabel('t[s]')
ylabel('y(t)')
コメント