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

Dependencies:   DSProcessingIO mbed

Revision:
0:a5a171eda3f8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/coefsHilbert94.hpp	Tue Jul 15 09:11:35 2014 +0000
@@ -0,0 +1,20 @@
+//--------------------------------------------------------------
+//  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};