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

Dependencies:   DSProcessingIO mbed

coefsHilbert94.hpp

Committer:
CQpub0Mikami
Date:
2014-12-27
Revision:
2:0b15cd2b79e3
Parent:
0:a5a171eda3f8

File content as of revision 2:0b15cd2b79e3:

//--------------------------------------------------------------
//  Coefficients of FIR filter for Hilbert transform
//  order = 94
//--------------------------------------------------------------

// lower edge band frequency (kHz) 0.100000
// upper edge band frequency (kHz) 4.900000
// deviation                       0.021787
// deviation [dB]                  0.187207

const int ORDER_ = 94;
const float hm_[(ORDER_-2)/4+1] = {
         -1.299277E-02f, -4.568317E-03f, -5.370440E-03f,
         -6.267365E-03f, -7.268236E-03f, -8.387631E-03f,
         -9.634522E-03f, -1.103786E-02f, -1.260725E-02f,
         -1.437928E-02f, -1.639191E-02f, -1.868889E-02f,
         -2.133888E-02f, -2.443648E-02f, -2.811453E-02f,
         -3.256408E-02f, -3.808325E-02f, -4.515709E-02f,
         -5.462150E-02f, -6.805616E-02f, -8.885052E-02f,
         -1.258209E-01f, -2.113017E-01f, -6.363176E-01f};