Suppose I have a data array from an ECG like this one
http://joachim.behar.perso.neuf.fr/Joachim/ECG_tuto_1/ECG_filters_basics/ecg_sample.txt
and I need to filter a 50Hz noise out of it, using an algorithm like that
http://joachim.behar.perso.neuf.fr/Joachim/ECG_tuto_1/ECG_filters_basics/notch_filter.m
and the result should be like that ( red - filtered, blue - unfiltered ) seen in Figure 2:
What would be the best way of doing it in Java/android? Would this library help https://sites.google.com/site/piotrwendykier/software/jtransforms ?
Thanks! )