• ButterWorth巴特沃斯滤波库

    ButterWorth巴特沃斯滤波64B位 C++库,支持高通、低通、带通、带阻滤波。需要32位库请私信。 提供C#调用方法: public static class ButterFilter { [DllImport("V_Filter.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static void DeleteFilter(IntPtr filter); [DllImport("V_Filter.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static double FilterProcess(IntPtr filter, double data); [DllImport("V_Filter.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr CreateHighPass(double sampleRate, double order, double cutoffFrequency); [DllImport("V_Filter.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr CreateLowPass(double sampleRate, double order, double cutoffFrequency); [DllImport("V_Filter.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr CreateBandPass(double sampleRate, double order, double centerFrequency, double bandWidth); [DllImport("V_Filter.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr CreateBandStop(double sampleRate, double order, double centerFrequency, double bandWidth); } 初始化滤波器: lowpassFilter= ButterFilter.CreateLowPass(sampleRate, order, endFreq); highpassFilter= ButterFilter.CreateHighPass(sampleRate, order, endFreq); bandstopFilter= ButterFilter.CreateBandStop(sampleRate, order,beginFreq, endFreq - beginFreq); bandPassFilter= ButterFilter.CreateBandPass(sampleRate, order,beginFreq, endFreq - beginFreq); 数据滤波: value = ButterFilter.FilterProcess(highpassFilter, value);

    4
    1058
    335KB
    2018-11-21
    46
  • 第12月工资与年终奖税收最优化分配计算器

    在国家税法规定允许范围内, 在保持年终奖与第12 月工资总额为给定值的条件下,计算出最优的工资与奖金分配,使纳税人纳税最优。纳税基数为5000.可批量Excel导入工资表计算。

    0
    597
    137KB
    2018-11-20
    49
  • GetEquipmentInLAN

    C#语言编程获取局域网内设备的IP地址,设备名称与MAC地址。

    0
    69
    43KB
    2018-07-21
    10
  • MS VC++ 6.0 MFC类库参考手册

    MicroSoft Visual C++ 6.0 MFC类库参考手册

    0
    90
    7.11MB
    2008-12-12
    9
  • 创作能手

    授予每个自然周发布1篇到3篇原创IT博文的用户
  • 求知

    发布1个问题
  • 受益良多

    发布1个问题且都已采纳了他人的回答
  • 新秀勋章

    用户首次发布原创文章,审核通过后即可获得
关注 私信
上传资源赚积分or赚钱