2024-06-16 09:31:13 +00:00
|
|
|
/* nbp.c
|
|
|
|
|
|
|
|
This file is part of a program that implements a Software-Defined Radio.
|
|
|
|
|
|
|
|
Copyright (C) 2015, 2016 Warren Pratt, NR0V
|
|
|
|
Copyright (C) 2024 Edouard Griffiths, F4EXB Adapted to SDRangel
|
|
|
|
|
|
|
|
This program 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
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
The author can be reached by email at
|
|
|
|
|
|
|
|
warren@wpratt.com
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "comm.hpp"
|
|
|
|
#include "fir.hpp"
|
2024-07-13 01:20:26 +00:00
|
|
|
#include "fircore.hpp"
|
2024-07-02 22:52:16 +00:00
|
|
|
#include "bpsnba.hpp"
|
2024-06-16 09:31:13 +00:00
|
|
|
#include "nbp.hpp"
|
|
|
|
|
|
|
|
namespace WDSP {
|
|
|
|
|
|
|
|
/********************************************************************************************************
|
|
|
|
* *
|
|
|
|
* Notch Database *
|
|
|
|
* *
|
|
|
|
********************************************************************************************************/
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
NOTCHDB::NOTCHDB(int _master_run, int _maxnotches)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
master_run = _master_run;
|
|
|
|
maxnotches = _maxnotches;
|
|
|
|
nn = 0;
|
2024-07-27 21:29:15 +00:00
|
|
|
fcenter.resize(maxnotches); // (float *) malloc0 (maxnotches * sizeof (float));
|
|
|
|
fwidth.resize(maxnotches); // (float *) malloc0 (maxnotches * sizeof (float));
|
|
|
|
nlow.resize(maxnotches); // (float *) malloc0 (maxnotches * sizeof (float));
|
|
|
|
nhigh.resize(maxnotches); // (float *) malloc0 (maxnotches * sizeof (float));
|
|
|
|
active.resize(maxnotches); // (int *) malloc0 (maxnotches * sizeof (int ));
|
2024-07-24 18:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int NOTCHDB::addNotch(int notch, double _fcenter, double _fwidth, int _active)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
if (notch <= nn && nn < maxnotches)
|
|
|
|
{
|
|
|
|
nn++;
|
|
|
|
|
|
|
|
for (i = nn - 2, j = nn - 1; i >= notch; i--, j--)
|
|
|
|
{
|
|
|
|
fcenter[j] = fcenter[i];
|
|
|
|
fwidth[j] = fwidth[i];
|
|
|
|
nlow[j] = nlow[i];
|
|
|
|
nhigh[j] = nhigh[i];
|
|
|
|
active[j] = active[i];
|
|
|
|
}
|
|
|
|
fcenter[notch] = _fcenter;
|
|
|
|
fwidth[notch] = _fwidth;
|
|
|
|
nlow[notch] = _fcenter - 0.5 * _fwidth;
|
|
|
|
nhigh[notch] = _fcenter + 0.5 * _fwidth;
|
|
|
|
active[notch] = _active;
|
|
|
|
rval = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rval = -1;
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NOTCHDB::getNotch(int _notch, double* _fcenter, double* _fwidth, int* _active)
|
|
|
|
{
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
if (_notch < nn)
|
|
|
|
{
|
|
|
|
*_fcenter = fcenter[_notch];
|
|
|
|
*_fwidth = fwidth[_notch];
|
|
|
|
*_active = active[_notch];
|
|
|
|
rval = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*_fcenter = -1.0;
|
|
|
|
*_fwidth = 0.0;
|
|
|
|
*_active = -1;
|
|
|
|
rval = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NOTCHDB::deleteNotch(int _notch)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
if (_notch < nn)
|
|
|
|
{
|
|
|
|
nn--;
|
|
|
|
for (i = _notch, j = _notch + 1; i < nn; i++, j++)
|
|
|
|
{
|
|
|
|
fcenter[i] = fcenter[j];
|
|
|
|
fwidth[i] = fwidth[j];
|
|
|
|
nlow[i] = nlow[j];
|
|
|
|
nhigh[i] = nhigh[j];
|
|
|
|
active[i] = active[j];
|
|
|
|
}
|
|
|
|
rval = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rval = -1;
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NOTCHDB::editNotch(int _notch, double _fcenter, double _fwidth, int _active)
|
|
|
|
{
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
if (_notch < nn)
|
|
|
|
{
|
|
|
|
fcenter[_notch] = _fcenter;
|
|
|
|
fwidth[_notch] = _fwidth;
|
|
|
|
nlow[_notch] = _fcenter - 0.5 * _fwidth;
|
|
|
|
nhigh[_notch] = _fcenter + 0.5 * _fwidth;
|
|
|
|
active[_notch] = _active;
|
|
|
|
rval = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rval = -1;
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NOTCHDB::getNumNotches(int* _nnotches)
|
|
|
|
{
|
|
|
|
*_nnotches = nn;
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************************************************************************
|
|
|
|
* *
|
|
|
|
* Notched Bandpass Filter *
|
|
|
|
* *
|
|
|
|
********************************************************************************************************/
|
|
|
|
|
2024-07-16 22:40:00 +00:00
|
|
|
float* NBP::fir_mbandpass (int N, int nbp, double* flow, double* fhigh, double rate, double scale, int wintype)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
|
|
|
int i, k;
|
2024-06-25 01:50:48 +00:00
|
|
|
float* impulse = new float[N * 2]; // (float *) malloc0 (N * sizeof (complex));
|
|
|
|
float* imp;
|
2024-06-16 09:31:13 +00:00
|
|
|
for (k = 0; k < nbp; k++)
|
|
|
|
{
|
|
|
|
imp = FIR::fir_bandpass (N, flow[k], fhigh[k], rate, wintype, 1, scale);
|
|
|
|
for (i = 0; i < N; i++)
|
|
|
|
{
|
|
|
|
impulse[2 * i + 0] += imp[2 * i + 0];
|
|
|
|
impulse[2 * i + 1] += imp[2 * i + 1];
|
|
|
|
}
|
|
|
|
delete[] (imp);
|
|
|
|
}
|
|
|
|
return impulse;
|
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
double NBP::min_notch_width()
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-16 22:40:00 +00:00
|
|
|
double min_width;
|
2024-07-24 18:29:55 +00:00
|
|
|
switch (wintype)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
|
|
|
case 0:
|
2024-07-24 18:29:55 +00:00
|
|
|
min_width = 1600.0 / (nc / 256) * (rate / 48000);
|
2024-06-16 09:31:13 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2024-07-24 18:29:55 +00:00
|
|
|
min_width = 2200.0 / (nc / 256) * (rate / 48000);
|
2024-06-16 09:31:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return min_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NBP::make_nbp (
|
|
|
|
int nn,
|
2024-07-27 21:29:15 +00:00
|
|
|
std::vector<int>& active,
|
|
|
|
std::vector<double>& center,
|
|
|
|
std::vector<double>& width,
|
|
|
|
std::vector<double>& nlow,
|
|
|
|
std::vector<double>& nhigh,
|
2024-07-16 22:40:00 +00:00
|
|
|
double minwidth,
|
2024-06-16 09:31:13 +00:00
|
|
|
int autoincr,
|
2024-07-16 22:40:00 +00:00
|
|
|
double flow,
|
|
|
|
double fhigh,
|
2024-07-27 21:29:15 +00:00
|
|
|
std::vector<double>& bplow,
|
|
|
|
std::vector<double>& bphigh,
|
2024-06-16 09:31:13 +00:00
|
|
|
int* havnotch
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int nbp;
|
|
|
|
int nnbp, adds;
|
|
|
|
int i, j, k;
|
2024-07-16 22:40:00 +00:00
|
|
|
double nl, nh;
|
2024-06-16 09:31:13 +00:00
|
|
|
int* del = new int[1024]; // (int *) malloc0 (1024 * sizeof (int));
|
|
|
|
if (fhigh > flow)
|
|
|
|
{
|
|
|
|
bplow[0] = flow;
|
|
|
|
bphigh[0] = fhigh;
|
|
|
|
nbp = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nbp = 0;
|
2024-07-19 06:10:54 +00:00
|
|
|
delete[] del;
|
2024-06-16 09:31:13 +00:00
|
|
|
return nbp;
|
|
|
|
}
|
|
|
|
*havnotch = 0;
|
|
|
|
for (k = 0; k < nn; k++)
|
|
|
|
{
|
|
|
|
if (autoincr && width[k] < minwidth)
|
|
|
|
{
|
|
|
|
nl = center[k] - 0.5 * minwidth;
|
|
|
|
nh = center[k] + 0.5 * minwidth;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nl = nlow[k];
|
|
|
|
nh = nhigh[k];
|
|
|
|
}
|
|
|
|
if (active[k] && (nh > flow && nl < fhigh))
|
|
|
|
{
|
|
|
|
*havnotch = 1;
|
|
|
|
adds = 0;
|
|
|
|
for (i = 0; i < nbp; i++)
|
|
|
|
{
|
|
|
|
if (nh > bplow[i] && nl < bphigh[i])
|
|
|
|
{
|
|
|
|
if (nl <= bplow[i] && nh >= bphigh[i])
|
|
|
|
{
|
|
|
|
del[i] = 1;
|
|
|
|
}
|
|
|
|
else if (nl > bplow[i] && nh < bphigh[i])
|
|
|
|
{
|
|
|
|
|
|
|
|
bplow[nbp + adds] = nh;
|
|
|
|
bphigh[nbp + adds] = bphigh[i];
|
|
|
|
bphigh[i] = nl;
|
|
|
|
adds++;
|
|
|
|
}
|
|
|
|
else if (nl <= bplow[i] && nh > bplow[i])
|
|
|
|
{
|
|
|
|
bplow[i] = nh;
|
|
|
|
}
|
|
|
|
else if (nl < bphigh[i] && nh >= bphigh[i])
|
|
|
|
{
|
|
|
|
bphigh[i] = nl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nbp += adds;
|
|
|
|
nnbp = nbp;
|
|
|
|
for (i = 0; i < nbp; i++)
|
|
|
|
{
|
|
|
|
if (del[i] == 1)
|
|
|
|
{
|
|
|
|
nnbp--;
|
|
|
|
for (j = i; j < nnbp; j++)
|
|
|
|
{
|
|
|
|
bplow[j] = bplow[j + 1];
|
|
|
|
bphigh[j] = bphigh[j + 1];
|
|
|
|
}
|
|
|
|
del[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nbp = nnbp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete[] (del);
|
|
|
|
return nbp;
|
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::calc_lightweight()
|
2024-06-16 09:31:13 +00:00
|
|
|
{ // calculate and set new impulse response; used when changing tune freq or shift freq
|
|
|
|
int i;
|
2024-07-16 22:40:00 +00:00
|
|
|
double fl, fh;
|
|
|
|
double offset;
|
2024-07-24 18:29:55 +00:00
|
|
|
NOTCHDB *b = notchdb;
|
|
|
|
if (fnfrun)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
|
|
|
offset = b->tunefreq + b->shift;
|
2024-07-24 18:29:55 +00:00
|
|
|
fl = flow + offset;
|
|
|
|
fh = fhigh + offset;
|
|
|
|
numpb = make_nbp (
|
2024-06-16 09:31:13 +00:00
|
|
|
b->nn,
|
|
|
|
b->active,
|
|
|
|
b->fcenter,
|
|
|
|
b->fwidth,
|
|
|
|
b->nlow,
|
|
|
|
b->nhigh,
|
2024-07-24 18:29:55 +00:00
|
|
|
min_notch_width(),
|
|
|
|
autoincr,
|
2024-06-16 09:31:13 +00:00
|
|
|
fl,
|
|
|
|
fh,
|
2024-07-24 18:29:55 +00:00
|
|
|
bplow,
|
|
|
|
bphigh,
|
|
|
|
&havnotch
|
2024-06-16 09:31:13 +00:00
|
|
|
);
|
|
|
|
// when tuning, no need to recalc filter if there were not and are not any notches in passband
|
2024-07-24 18:29:55 +00:00
|
|
|
if (hadnotch || havnotch)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
for (i = 0; i < numpb; i++)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
bplow[i] -= offset;
|
|
|
|
bphigh[i] -= offset;
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
2024-07-27 21:29:15 +00:00
|
|
|
impulse = fir_mbandpass (
|
|
|
|
nc,
|
|
|
|
numpb,
|
|
|
|
bplow.data(),
|
|
|
|
bphigh.data(),
|
|
|
|
rate,
|
|
|
|
gain / (float)(2 * size),
|
|
|
|
wintype
|
|
|
|
);
|
2024-07-24 18:29:55 +00:00
|
|
|
FIRCORE::setImpulse_fircore (fircore, impulse, 1);
|
|
|
|
// print_impulse ("nbp.txt", size + 1, impulse, 1, 0);
|
|
|
|
delete[](impulse);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
2024-07-24 18:29:55 +00:00
|
|
|
hadnotch = havnotch;
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
else
|
2024-07-24 18:29:55 +00:00
|
|
|
hadnotch = 1;
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::calc_impulse ()
|
2024-06-16 09:31:13 +00:00
|
|
|
{ // calculates impulse response; for create_fircore() and parameter changes
|
|
|
|
int i;
|
2024-06-25 01:50:48 +00:00
|
|
|
float fl, fh;
|
2024-07-16 22:40:00 +00:00
|
|
|
double offset;
|
2024-07-24 18:29:55 +00:00
|
|
|
NOTCHDB *b = notchdb;
|
|
|
|
|
|
|
|
if (fnfrun)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
|
|
|
offset = b->tunefreq + b->shift;
|
2024-07-24 18:29:55 +00:00
|
|
|
fl = flow + offset;
|
|
|
|
fh = fhigh + offset;
|
|
|
|
numpb = make_nbp (
|
2024-06-16 09:31:13 +00:00
|
|
|
b->nn,
|
|
|
|
b->active,
|
|
|
|
b->fcenter,
|
|
|
|
b->fwidth,
|
|
|
|
b->nlow,
|
|
|
|
b->nhigh,
|
2024-07-24 18:29:55 +00:00
|
|
|
min_notch_width(),
|
|
|
|
autoincr,
|
2024-06-16 09:31:13 +00:00
|
|
|
fl,
|
|
|
|
fh,
|
2024-07-24 18:29:55 +00:00
|
|
|
bplow,
|
|
|
|
bphigh,
|
|
|
|
&havnotch
|
2024-06-16 09:31:13 +00:00
|
|
|
);
|
2024-07-24 18:29:55 +00:00
|
|
|
for (i = 0; i < numpb; i++)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
bplow[i] -= offset;
|
|
|
|
bphigh[i] -= offset;
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
2024-07-24 18:29:55 +00:00
|
|
|
impulse = fir_mbandpass (
|
|
|
|
nc,
|
|
|
|
numpb,
|
2024-07-27 21:29:15 +00:00
|
|
|
bplow.data(),
|
|
|
|
bphigh.data(),
|
2024-07-24 18:29:55 +00:00
|
|
|
rate,
|
|
|
|
gain / (float)(2 * size),
|
|
|
|
wintype
|
2024-06-16 09:31:13 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
impulse = FIR::fir_bandpass(
|
|
|
|
nc,
|
|
|
|
flow,
|
|
|
|
fhigh,
|
|
|
|
rate,
|
|
|
|
wintype,
|
2024-06-16 09:31:13 +00:00
|
|
|
1,
|
2024-07-24 18:29:55 +00:00
|
|
|
gain / (float)(2 * size)
|
2024-06-16 09:31:13 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
NBP::NBP(
|
|
|
|
int _run,
|
|
|
|
int _fnfrun,
|
|
|
|
int _position,
|
|
|
|
int _size,
|
|
|
|
int _nc,
|
|
|
|
int _mp,
|
|
|
|
float* _in,
|
|
|
|
float* _out,
|
|
|
|
double _flow,
|
|
|
|
double _fhigh,
|
|
|
|
int _rate,
|
|
|
|
int _wintype,
|
|
|
|
double _gain,
|
|
|
|
int _autoincr,
|
|
|
|
int _maxpb,
|
|
|
|
NOTCHDB* _notchdb
|
|
|
|
) :
|
|
|
|
run(_run),
|
|
|
|
fnfrun(_fnfrun),
|
|
|
|
position(_position),
|
|
|
|
size(_size),
|
|
|
|
nc(_nc),
|
|
|
|
mp(_mp),
|
|
|
|
rate((double) _rate),
|
|
|
|
wintype(_wintype),
|
|
|
|
gain(_gain),
|
|
|
|
in(_in),
|
|
|
|
out(_out),
|
|
|
|
autoincr(_autoincr),
|
|
|
|
flow(_flow),
|
|
|
|
fhigh(_fhigh),
|
|
|
|
maxpb(_maxpb),
|
|
|
|
notchdb(_notchdb)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-27 21:29:15 +00:00
|
|
|
bplow.resize(maxpb); // (float *) malloc0 (maxpb * sizeof (float));
|
|
|
|
bphigh.resize(maxpb); // (float *) malloc0 (maxpb * sizeof (float));
|
2024-07-24 18:29:55 +00:00
|
|
|
calc_impulse ();
|
|
|
|
fircore = FIRCORE::create_fircore (size, in, out, nc, mp, impulse);
|
|
|
|
// print_impulse ("nbp.txt", size + 1, impulse, 1, 0);
|
|
|
|
delete[](impulse);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
NBP::~NBP()
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
FIRCORE::destroy_fircore (fircore);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::flush()
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
FIRCORE::flush_fircore (fircore);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::execute (int pos)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
if (run && pos == position)
|
|
|
|
FIRCORE::xfircore (fircore);
|
|
|
|
else if (in != out)
|
|
|
|
std::copy( in, in + size * 2, out);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::setBuffers(float* _in, float* _out)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
in = _in;
|
|
|
|
out = _out;
|
|
|
|
FIRCORE::setBuffers_fircore (fircore, in, out);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::setSamplerate(int _rate)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
rate = _rate;
|
|
|
|
calc_impulse ();
|
|
|
|
FIRCORE::setImpulse_fircore (fircore, impulse, 1);
|
|
|
|
delete[] (impulse);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::setSize(int _size)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
|
|
|
// NOTE: 'size' must be <= 'nc'
|
2024-07-24 18:29:55 +00:00
|
|
|
size = _size;
|
|
|
|
FIRCORE::setSize_fircore (fircore, size);
|
|
|
|
calc_impulse ();
|
|
|
|
FIRCORE::setImpulse_fircore (fircore, impulse, 1);
|
|
|
|
delete[] (impulse);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::setNc()
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
calc_impulse();
|
|
|
|
FIRCORE::setNc_fircore (fircore, nc, impulse);
|
|
|
|
delete[] (impulse);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::setMp()
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
FIRCORE::setMp_fircore (fircore, mp);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************************************************************************
|
|
|
|
* *
|
2024-07-24 18:29:55 +00:00
|
|
|
* Public Properties *
|
2024-06-16 09:31:13 +00:00
|
|
|
* *
|
|
|
|
********************************************************************************************************/
|
|
|
|
|
|
|
|
// FILTER PROPERTIES
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::SetRun(int _run)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
run = _run;
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::SetFreqs(double _flow, double _fhigh)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
if ((flow != _flow) || (fhigh != _fhigh))
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
flow = _flow;
|
|
|
|
fhigh = _fhigh;
|
|
|
|
calc_impulse();
|
|
|
|
FIRCORE::setImpulse_fircore (fircore, impulse, 1);
|
|
|
|
delete[] (impulse);
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::SetNC(int _nc)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
|
|
|
// NOTE: 'nc' must be >= 'size'
|
2024-07-24 18:29:55 +00:00
|
|
|
if (nc != _nc)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
nc = _nc;
|
|
|
|
setNc();
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::SetMP(int _mp)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
if (mp != _mp)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
mp = _mp;
|
|
|
|
setMp();
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-24 18:29:55 +00:00
|
|
|
void NBP::GetMinNotchWidth(double* minwidth)
|
2024-06-16 09:31:13 +00:00
|
|
|
{
|
2024-07-24 18:29:55 +00:00
|
|
|
*minwidth = min_notch_width();
|
2024-06-16 09:31:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace WDSP
|