Back to project page APSK.
The source code is released under:
GNU General Public License
If you think the Android project APSK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * This file is part of znudigi.// w ww . j av a 2s . com * Released under GNU GENERAL PUBLIC LICENSE Version 2 * See file COPYING. * Copyright (C) 2007-2008 Leigh L. Klotz, Jr. <Leigh@WA5ZNU.org> */ package org.wa5znu.znuradio.dsp; public class Subsampler extends RealFIRFilter { public Subsampler(int factor) { super(factor); implement(new LowPassFilterDesign(32, 1.0 / (double)factor)); } public double[] subsample(double data[], int length) { return filter(data, length); } }