given a time axis:t=linspace(0,10,512); and a signal x=3sin(5t)-6cos(9t). how do i add random noise n to obtain a noisy signal y=x+n. help me write a mathlab expression for random noise that will match my time axis. thanks
이전 댓글 표시
mathlb use in digital filtering.
댓글 수: 1
John D'Errico
2014년 10월 24일
편집: John D'Errico
2014년 10월 24일
It is MATLAB. And read the help for randn.
답변 (1개)
Rick Rosson
2014년 10월 27일
n = randn(size(t));
카테고리
도움말 센터 및 File Exchange에서 Signal Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!