-
jsiegle authored
To run this in the future, install astyle (sudo apt-get install astyle), then enter the following from the top-level project directory: astyle --options=astyle.options --recursive "./Source/*.cpp" "./Source/*.h" This will convert tabs to 4 spaces and ensure that brackets are on their own lines.
jsiegle authoredTo run this in the future, install astyle (sudo apt-get install astyle), then enter the following from the top-level project directory: astyle --options=astyle.options --recursive "./Source/*.cpp" "./Source/*.h" This will convert tabs to 4 spaces and ensure that brackets are on their own lines.
Elliptic.h 8.41 KiB
/*******************************************************************************
"A Collection of Useful C++ Classes for Digital Signal Processing"
By Vincent Falco
Official project location:
http://code.google.com/p/dspfilterscpp/
See Documentation.cpp for contact information, notes, and bibliography.
--------------------------------------------------------------------------------
License: MIT License (http://www.opensource.org/licenses/mit-license.php)
Copyright (c) 2009 by Vincent Falco
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*******************************************************************************/
#ifndef DSPFILTERS_ELLIPTIC_H
#define DSPFILTERS_ELLIPTIC_H
#include "Common.h"
#include "Cascade.h"
#include "Design.h"
#include "Filter.h"
#include "PoleFilter.h"
namespace Dsp
{
/*
* Filters with Elliptic response characteristics
*
*/
namespace Elliptic
{
// Solves for Jacobi elliptics
class Solver
{
public:
static double ellipticK(double k);
};
// Half-band analog prototype (s-plane)
class AnalogLowPass : public LayoutBase
{
public:
AnalogLowPass();
void design(const int numPoles,
double rippleDb,
double rolloff);
private:
void prodpoly(int sn);
void calcfz2(int i);
void calcfz();
void calcqz();
double findfact(int t);
double calcsn(double u);
#if 0
template<int n>
struct CalcArray
{
double& operator[](size_t index)
{
assert(index<n);
return m_a[index];
}
private:
double m_a[n];
};
#else
#endif
double m_p0;
double m_q;
double m_K;
double m_Kprime;
double m_e;
int m_nin;
int m_m;
int m_n2;
int m_em;
double m_zeros[100];
double m_c1[100];
double m_b1[100];
double m_a1[100];
double m_d1[100];
double m_q1[100];
double m_z1[100];
double m_f1[100];
double m_s1[100];
double m_p [100];
double m_zw1[100];
double m_zf1[100];
double m_zq1[100];
double m_rootR[100];
double m_rootI[100];
int m_numPoles;
double m_rippleDb;
double m_rolloff;
};
//------------------------------------------------------------------------------
// Factored implementations to reduce template instantiations
struct LowPassBase : PoleFilterBase <AnalogLowPass>
{
void setup(int order,
double sampleRate,
double cutoffFrequency,
double rippleDb,
double rolloff);
};
struct HighPassBase : PoleFilterBase <AnalogLowPass>
{
void setup(int order,
double sampleRate,
double cutoffFrequency,
double rippleDb,
double rolloff);
};
struct BandPassBase : PoleFilterBase <AnalogLowPass>
{
void setup(int order,
double sampleRate,
double centerFrequency,
double widthFrequency,
double rippleDb,
double rolloff);
};
struct BandStopBase : PoleFilterBase <AnalogLowPass>
{
void setup(int order,
double sampleRate,
double centerFrequency,
double widthFrequency,
double rippleDb,
double rolloff);
};
//------------------------------------------------------------------------------
//
// Raw filters
//
template <int MaxOrder>
struct LowPass : PoleFilter <LowPassBase, MaxOrder>
{
};
template <int MaxOrder>
struct HighPass : PoleFilter <HighPassBase, MaxOrder>
{
};
template <int MaxOrder>
struct BandPass : PoleFilter <BandPassBase, MaxOrder, MaxOrder*2>
{
};
template <int MaxOrder>
struct BandStop : PoleFilter <BandStopBase, MaxOrder, MaxOrder*2>
{
};
//------------------------------------------------------------------------------
//
// Gui-friendly Design layer
//
namespace Design
{
struct TypeIBase : DesignBase
{
enum
{
NumParams = 5
};
static int getNumParams()
{
return 5;
}
static const ParamInfo getParamInfo_2()
{
return ParamInfo::defaultCutoffFrequencyParam();
}
static const ParamInfo getParamInfo_3()
{
return ParamInfo::defaultRippleDbParam();
}
static const ParamInfo getParamInfo_4()
{
return ParamInfo::defaultRolloffParam();
}
};
template <class FilterClass>
struct TypeI : TypeIBase, FilterClass
{
void setParams(const Params& params)
{
FilterClass::setup(int(params[1]), params[0], params[2], params[3], params[4]);
}
};
struct TypeIIBase : DesignBase
{
enum
{
NumParams = 6
};
static int getNumParams()
{
return 6;
}
static const ParamInfo getParamInfo_2()
{
return ParamInfo::defaultCenterFrequencyParam();
}
static const ParamInfo getParamInfo_3()
{
return ParamInfo::defaultBandwidthHzParam();
}
static const ParamInfo getParamInfo_4()
{
return ParamInfo::defaultRippleDbParam();
}
static const ParamInfo getParamInfo_5()
{
return ParamInfo::defaultRolloffParam();
}
};
template <class FilterClass>
struct TypeII : TypeIIBase, FilterClass
{
void setParams(const Params& params)
{
FilterClass::setup(int(params[1]), params[0], params[2], params[3], params[4], params[5]);
}
};
// Factored kind and name
struct LowPassDescription
{
static Kind getKind()
{
return kindLowPass;
}
static const char* getName()
{
return "Elliptic Low Pass";
}
};
struct HighPassDescription
{
static Kind getKind()
{
return kindHighPass;
}
static const char* getName()
{
return "Elliptic High Pass";
}
};
struct BandPassDescription
{
static Kind getKind()
{
return kindHighPass;
}
static const char* getName()
{
return "Elliptic Band Pass";
}
};
struct BandStopDescription
{
static Kind getKind()
{
return kindHighPass;
}
static const char* getName()
{
return "Elliptic Band Stop";
}
};
// This glues on the Order parameter
template <int MaxOrder,
template <class> class TypeClass,
template <int> class FilterClass>
struct OrderBase : TypeClass <FilterClass <MaxOrder> >
{
const ParamInfo getParamInfo_1() const
{
return ParamInfo(idOrder, "Order", "Order",
1, MaxOrder, 2,
&ParamInfo::Int_toControlValue,
&ParamInfo::Int_toNativeValue,
&ParamInfo::Int_toString);
}
};
//------------------------------------------------------------------------------
//
// Design filters
//
template <int MaxOrder>
struct LowPass : OrderBase <MaxOrder, TypeI, Elliptic::LowPass>,
LowPassDescription
{
};
template <int MaxOrder>
struct HighPass : OrderBase <MaxOrder, TypeI, Elliptic::HighPass>,
HighPassDescription
{
};
template <int MaxOrder>
struct BandPass : OrderBase <MaxOrder, TypeII, Elliptic::BandPass>,
BandPassDescription
{
};
template <int MaxOrder>
struct BandStop : OrderBase <MaxOrder, TypeII, Elliptic::BandStop>,
BandStopDescription
{
};
}
}
}
#endif