How can I write the same code without using medfilt1 command?

 Respuesta aceptada

Image Analyst
Image Analyst el 12 de Dic. de 2015
You can use the median() function. Then you just have to put that inside a for loop, which is extremely trivial.
Is this homework? Or do you just not have the Signal Processing Toolbox?

2 comentarios

Gokcen YARICI
Gokcen YARICI el 12 de Dic. de 2015
Editada: Gokcen YARICI el 12 de Dic. de 2015
I didn't know what to do first. Yes, Its homework and dont get me wrong by the way. I didn't want you are doing it for me. Just I want to some hints how to start write this.
Thank you.
Ps: I am still inexprienced in the matlab. So I am still learning. Again thanks for sharing your thoughts.
You're welcome - that's what I thought so that's why I didn't just do it outright for you. Thanks for accepting. If you have any trouble or error messages, then attach your code and we'll see how to fix it. But it's basically
for k = .....
filteredSignal(k) = med(...........
end
subplot(2,1,1);
plot(originalSignal,......
subplot(2,1,2);
plot(filteredSignal,......

Iniciar sesión para comentar.

Más respuestas (1)

Jan
Jan el 12 de Dic. de 2015
Please take the time to post, what you have tried so far. Note that you will get many working medfilt1 replacement codes, if you ask your favorite internet search engine.

Etiquetas

Preguntada:

el 12 de Dic. de 2015

Editada:

el 14 de Dic. de 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by