add Gaussian distributed noise
조회 수: 5 (최근 30일)
이전 댓글 표시
How to add Gaussian distributed noise with zero mean and standard deviation of 0.1 ?
댓글 수: 0
답변 (1개)
Chris
2022년 9월 12일
편집: Chris
2022년 9월 12일
Use normrnd
댓글 수: 2
Chris
2022년 9월 12일
편집: Chris
2022년 9월 12일
The same results as what?
If you want the distribution to be the same each run, you will need to seed the random number generator.
figure
tiledlayout(1,2)
s = rng;
r1 = normrnd(0,.1,50000,1);
nexttile
histogram(r1)
rng(s)
r2 = normrnd(0,.1,50000,1);
nexttile
histogram(r2)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!