00001 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef TDSPESTIMATOR_H 00019 #define TDSPESTIMATOR_H 00020 00021 #include <TQQObject.h> 00022 #include <TDSPVector.h> 00023 #include <TDSPMatrix.h> 00024 00030 class TDSPEstimator : public TQQObject { 00031 protected: 00032 TDSPVector* fEstimate; 00033 00034 public: 00035 TDSPEstimator(); 00036 ~TDSPEstimator(); 00037 00038 TDSPVector *GetEstimate() const { return fEstimate;}; 00039 00040 virtual TDSPVector* Estimate(TDSPVector* y) { return y;}; 00041 virtual void Calculate() = 0; 00042 ClassDef(TDSPEstimator,1) 00043 00044 }; 00045 00046 00047 #endif
1.3.2