Effacer les filtres
Effacer les filtres

Why is my function not defining my outputs and just returning "ans"?

3 vues (au cours des 30 derniers jours)
Jennifer Miller
Jennifer Miller le 23 Juin 2015
Commenté : BSantos le 23 Juin 2015
I have written the following function to remove noise from an EMG signal
function[EMG_filtered] = noise_removal(EMG)
Fs = 2000;
[b1,a1]=butter(5,[48/Fs*2, 52/Fs*2],'stop');
[b2,a2]=butter(5,300/Fs*2,'low');
[b3,a3]=butter(5,10/Fs*2,'high');
x = filter(b1,a1,EMG);
x1 = filter(b2,a2,x);
EMG_filtered = filter(b3,a3,x1);
The function is running correctly except for the fact that it does not save the output as EMG_filtered. It returns "ans" which equals EMG_filtered but this is overwritten as soon as a different function is run. I am having this problem with all the functions I am running. Am I not defining the output correctly?
Thanks for any help and advice
  1 commentaire
BSantos
BSantos le 23 Juin 2015
you forgot a space in between "function" and the first bracket.

Connectez-vous pour commenter.

Réponse acceptée

Katalin
Katalin le 23 Juin 2015
In the script where you are using the function you need to define a variable e.g
ABC = noise_removal(data);
Then it will be stored in ABC. Otherwise if you just run it it will always put the result in "ans" of any function.

Plus de réponses (0)

Catégories

En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by