FrqRespDrawer class to draw frequency response for digital filter. ディジタルフィルタの周波数特性を,周波数軸をログスケールで描画するための FrqRespDrawer クラス. このライブラリを登録した際のプログラム:「F746_FrequencyResponseDrawer_Demo」

Dependents:   F746_SD_WavPlayer F746_SD_GraphicEqualizer_ren0620 F746_FrequencyResponseDrawer_Demo F746_SD_VarableFilter ... more

Revision:
1:19a32f6279e6
Parent:
0:0bc63b49e2a3
Child:
3:5a057b32802b
--- a/FrequancyResponseBase.hpp	Sun May 01 14:00:06 2016 +0000
+++ b/FrequancyResponseBase.hpp	Mon May 09 05:39:50 2016 +0000
@@ -1,11 +1,16 @@
 //-----------------------------------------------------------
+//  周波数応答を定義するクラスの基底クラスとして使う抽象クラス   
+//      周波数特性を描画するために与える周波数応答は,FrqRespDrawer
+//      クラスのメンバ関数 DrawGraph() の第一引数で与える.
+//      その周波数応答は,このクラスを継承する派生クラスで,純粋仮想 
+//      関数 AbsH_z() をオーバーライドする関数として定義すること.
+//
 //  FrequencyResponse class (abstract base class)
-//      Derived class of this class mest be used to give
-//      argument of FrqRespDrawer::DrawGraph()
+//      Derived class of this class must be used to give
+//      the first argument of FrqRespDrawer::DrawGraph().
+//      AbsH_z() must be overrided in the derived class
 //
-//      AbsH_z() must be overrided
-//
-//  2016/05/01, Copyright (c) 2016 MIKAMI, Naoki
+//  2016/05/09, Copyright (c) 2016 MIKAMI, Naoki
 //-----------------------------------------------------------
 
 #ifndef FREQUENCY_RESPONSE_BASE_HPP