Clarification about wnoise command in MATLAB
조회 수: 2 (최근 30일)
이전 댓글 표시
I need to understand the difference between this code
snr = 10;
init = 2055615866;
[yref,y] = wnoise(1,10,snr,init);
and this code
snr = 10;
init = 2055615866;
xx = wnoise(1,10);
xx_n = awgn(xx,snr,'measured',init);
I guess it should be the same but these two codes give two different result.
which code is more accurate or better to use?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Denoising and Compression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!