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!