📄 qa_gr_mmse_fir_interpolator.cc
字号:
/* -*- c++ -*- *//* * Copyright 2002 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * GNU Radio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU Radio; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#include <cppunit/TestAssert.h>#include <qa_gr_mmse_fir_interpolator.h>#include <gr_mmse_fir_interpolator.h>#include <stdio.h>#include <cmath>#define NELEM(x) (sizeof (x) / sizeof (x[0]))static floattest_fcn (double index){ return (2 * sin (index * 0.25 * 2 * M_PI + 0.125 * M_PI) + 3 * sin (index * 0.077 * 2 * M_PI + 0.3 * M_PI));}voidqa_gr_mmse_fir_interpolator::t1 (){ static const unsigned N = 100; float input[N + 10]; for (unsigned i = 0; i < NELEM(input); i++) input[i] = test_fcn ((double) i); gr_mmse_fir_interpolator intr; float inv_nsteps = 1.0 / intr.nsteps (); for (unsigned i = 0; i < N; i++){ for (unsigned imu = 0; imu <= intr.nsteps (); imu += 1){ float expected = test_fcn ((i + 4) - imu * inv_nsteps); // minus because mu is a fractional DELAY float actual = intr.interpolate (&input[i], imu * inv_nsteps); CPPUNIT_ASSERT_DOUBLES_EQUAL (expected, actual, 0.004); // printf ("%9.6f %9.6f %9.6f\n", expected, actual, expected - actual); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -