how can i add a gaussian noise with amp. 0.1 to a sin wav signal ??
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
amira ramadan
el 27 de Abr. de 2014
Comentada: amira ramadan
el 28 de Abr. de 2014
not with the fun. awgn because it's undefined function on the version of matlab i have .
2 comentarios
Respuesta aceptada
Image Analyst
el 27 de Abr. de 2014
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.
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!