Clear Filters
Clear Filters

How to add noise in transfer function

14 views (last 30 days)
Muhammad Naveed Iqbal
Muhammad Naveed Iqbal on 16 Jun 2015
Commented: Toby Russell on 24 Aug 2020
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?

Answers (1)

KL
KL on 16 Jun 2015
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;
Read this
  1 Comment
Toby Russell
Toby Russell on 24 Aug 2020
Hi, How would I specifiy that the disturbance should occur at 40 seconds using this method?

Sign in to comment.

Categories

Find more on Dynamic System Models in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!