How to create a noisy signal for wavelet transform practice?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sachin Motwani
el 26 de Ag. de 2020
Comentada: Sachin Motwani
el 26 de Ag. de 2020
I was trying the Wavelet toolbox; wherein they have the file 'noisysig.mat'. It contains three variables s1, s2 and x.
I understand that these contain the normal and the noisy signal but I wish to know how to create such noisy signals so that I can practice denoising with some other signals. How do I do that?
0 comentarios
Respuesta aceptada
Rafael Hernandez-Walls
el 26 de Ag. de 2020
maybe this code will help you
N=1000;
x=linspace(0,2*pi,N);
y=sin(x);
y2=randn(1,N);
y3=y+y2*.1;
subplot(2,1,1);plot(x,y)
subplot(2,1,2);plot(x,y3)
Más respuestas (0)
Ver también
Categorías
Más información sobre Continuous Wavelet Transforms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!