Can I add white noise to signal without using awgn?
Mostrar comentarios más antiguos
Hi, novice here,I m trying to add gaussian white noise to a .wav file , but my assignment only mentions σ=0.01 and the randn function as tips, nothing about the awgn function. How can I accomplish that ?
3 comentarios
Mathieu NOE
el 23 de Abr. de 2021
hello
if you use randn, remember that this signal will have sigma = 1 standard deviation
so if you need sigma = 0.01 noise signal it's simple :
noise_signal = 0.01*randn(1,samples) ;
dimakopoulos alexandros
el 3 de Mayo de 2021
Mathieu NOE
el 3 de Mayo de 2021
you're welcome
Respuestas (0)
Categorías
Más información sobre Propagation and Channel Models en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!