How to add noise in transfer function
13 次查看(过去 30 天)
显示 更早的评论
I have a system and i wrote a code for transfer function like tf(num,denum) but i want to add noise in this transfer function how can i add this?
0 个评论
回答(1 个)
KL
2015-6-16
I would suggest you to create a transfer function for the disturbance, say G_disturbance, and add this to your transfer function, say G_plant, using the '+' operator.
G_out = G_plant + G_disturbance;
1 个评论
Toby Russell
2020-8-24
Hi, How would I specifiy that the disturbance should occur at 40 seconds using this method?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 PID Controller Tuning 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!