How to create Gauss noise within the interval
Ältere Kommentare anzeigen
I have an interval with lower boundary at a = -0.005 and upper boundary b = 0.005. I need to create the Gauss white noise within this interval. For uniformly distributed pseudorandom numbers (generated by rand) it is clear e.g.:
r = a + (b-a).*rand(100,1);
however it does not work for randn function.I need some way how to produce the Gaussian noise in given interval. Is there any way how to do it?
thanks
Akzeptierte Antwort
Weitere Antworten (2)
Daniel Shub
am 17 Sep. 2013
2 Stimmen
What you are looking for is typically called a Truncated Gaussian. There is a highly rated FEX:submission
Laurent
am 17 Sep. 2013
2 Stimmen
This is not possible, since the output of randn can be in principle any value between -Inf and +Inf.
Depending on what you want you could set the width of the gaussian to a reasonable value (for example sigma=0.005) and then later clip values outside of your interval to the border values.
Kategorien
Mehr zu Numerical Integration and Differential Equations finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!