05-16-2012 01:37 PM
Hi. I want to do a moving average filter to my VI. I have done a basic FIR filter.. but i havent any clue how to do a moving average filter.
+ I want a button for play the input wav file.. how can i make this?
This is the vi :
Solved! Go to Solution.
05-16-2012 02:12 PM
My trick for a moving average is to use the FIR filter with specific coefficients.
As far as playing your wav file, check out the Graphics and Sound palette. I have little experience with them, but I know there's VIs there to play your wav file.
05-16-2012 02:23 PM
Thanks for the filter!!!
Ok i have found how to play the wav file, but this play it immediately! I want a button and when i push it then schould play the input wav..
05-16-2012 03:05 PM
You need to put your Play waveform inside an event structure. The VI will wait at the event structure until something happens such as the Value change of a boolean Play button you put on the front panel.
05-17-2012 08:45 AM
Thanks! It works! 🙂