MATLAB: Input system nonlinear (Identification)

identification

How to generate input u(t) is taken as an uncorrelated random
sequence with zero mean and unit variance?

Best Answer

You can use randn()
u = randn(1, 1000);
Related Question