how can i add a gaussian noise with amp. 0.1 to a sin wav signal ??
조회 수: 4 (최근 30일)
이전 댓글 표시
not with the fun. awgn because it's undefined function on the version of matlab i have .
댓글 수: 2
채택된 답변
Image Analyst
2014년 4월 27일
t = 1 : 300;
y = sin(t) + 0.1 * randn(1, length(t))
Otherwise, if you have the Image Processing Toolbox, how about using imnoise()? That is, if you didn't want randn (the preferred method) for some reason.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Propagation and Channel Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!