The experiment using this program is introduced on "Interface" No.3, CQ publishing Co.,Ltd, 2015. 本プログラムを使った実験は,CQ出版社のインターフェース 2015年3月号で紹介しています.

Dependencies:   DSProcessingIO mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers coefsHilbert94.hpp Source File

coefsHilbert94.hpp

00001 //--------------------------------------------------------------
00002 //  Coefficients of FIR filter for Hilbert transform
00003 //  order = 94
00004 //--------------------------------------------------------------
00005 
00006 // lower edge band frequency (kHz) 0.100000
00007 // upper edge band frequency (kHz) 4.900000
00008 // deviation                       0.021787
00009 // deviation [dB]                  0.187207
00010 
00011 const int ORDER_ = 94;
00012 const float hm_[(ORDER_-2)/4+1] = {
00013          -1.299277E-02f, -4.568317E-03f, -5.370440E-03f,
00014          -6.267365E-03f, -7.268236E-03f, -8.387631E-03f,
00015          -9.634522E-03f, -1.103786E-02f, -1.260725E-02f,
00016          -1.437928E-02f, -1.639191E-02f, -1.868889E-02f,
00017          -2.133888E-02f, -2.443648E-02f, -2.811453E-02f,
00018          -3.256408E-02f, -3.808325E-02f, -4.515709E-02f,
00019          -5.462150E-02f, -6.805616E-02f, -8.885052E-02f,
00020          -1.258209E-01f, -2.113017E-01f, -6.363176E-01f};