why when i make conv between an averaging filter and a noisy circuit it doesn't get filtered?
Afficher commentaires plus anciens
n=0:499
x=sin(2*pi*n/50)
y=x+0.1*randn(size(n))
h=[11111]/5
z=conv(h,y)
1 commentaire
amira ramadan
le 29 Avr 2014
Réponse acceptée
Plus de réponses (1)
Andrei Bobrov
le 29 Avr 2014
Modifié(e) : Andrei Bobrov
le 29 Avr 2014
n=0:499;
x=sin(2*pi*n/50);
y=x+0.1*randn(size(n));
h=[1,1,1,1,1]/5;
z=conv(y,h,'same');
3 commentaires
amira ramadan
le 29 Avr 2014
Andrei Bobrov
le 29 Avr 2014
corrected
amira ramadan
le 3 Mai 2014
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!