Applying white noise to PID model in matlab

711 Views Asked by At

I'd like to exclusively apply a white noise signal to a PID model in matlab. I know how to both generate this signal and how to add white noise to the other signals, but I have no idea how to apply only the white noise.

I tried to use lsim function but this one needs signals in time domain and in my white noise signal I have only values and samples. Below is how I created white noise (X):

L=100000; %Sample length for the random signal
mu=0;
sigma=2;
X=sigma*randn(L,1)+mu;
1

There are 1 best solutions below

0
On BEST ANSWER

The solution depends on where you want to add the noise: