ltiMatrixInversion.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef _LTI_MATRIX_INVERSION_H_
00034 #define _LTI_MATRIX_INVERSION_H_
00035
00036 #include "ltiLinearAlgebraFunctor.h"
00037
00038 namespace lti {
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064 template <class T>
00065 class matrixInversion : public linearAlgebraFunctor {
00066 public:
00067
00068
00069
00070 class parameters: public linearAlgebraFunctor::parameters {
00071
00072 public:
00073
00074
00075
00076 parameters(void) : linearAlgebraFunctor::parameters() {
00077 method=LUD;
00078 };
00079
00080
00081
00082
00083
00084 parameters(const parameters& other)
00085 : linearAlgebraFunctor::parameters() {
00086 copy(other);
00087 };
00088
00089
00090
00091
00092 ~parameters() {};
00093
00094
00095
00096
00097 const char* getTypeName() const {
00098 return "matrixInversion::parameters";
00099 };
00100
00101
00102
00103
00104
00105
00106
00107 parameters& copy(const parameters& other) {
00108 # ifndef _LTI_MSC_6
00109
00110 linearAlgebraFunctor::parameters::copy(other);
00111 # else
00112
00113
00114 functor::parameters&
00115 (functor::parameters::* p_copy)
00116 (const functor::parameters&) =
00117 functor::parameters::copy;
00118 (this->*p_copy)(other);
00119 # endif
00120
00121 method=other.method;
00122
00123 return *this;
00124 };
00125
00126
00127
00128
00129 virtual functor::parameters* clone() const {
00130 return new parameters(*this);
00131 };
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141 # ifndef _LTI_MSC_6
00142 virtual bool write(ioHandler& handler,const bool complete=true) const
00143 # else
00144 bool writeMS(ioHandler& handler,const bool complete=true) const
00145 # endif
00146 {
00147 bool b = true;
00148 if (complete) {
00149 b = handler.writeBegin();
00150 }
00151
00152 if (b) {
00153 if (method == LUD) {
00154 lti::write(handler,"method","LUD");
00155 } else {
00156 lti::write(handler,"method","SVD");
00157 }
00158 }
00159
00160 # ifndef _LTI_MSC_6
00161
00162
00163 b = b && linearAlgebraFunctor::parameters::write(handler,false);
00164 # else
00165 bool (functor::parameters::* p_writeMS)(ioHandler&,
00166 const bool) const =
00167 functor::parameters::writeMS;
00168 b = b && (this->*p_writeMS)(handler,false);
00169 # endif
00170
00171 if (complete) {
00172 b = b && handler.writeEnd();
00173 }
00174
00175 return b;
00176 }
00177
00178 # ifdef _LTI_MSC_6
00179 virtual bool write(ioHandler& handler,
00180 const bool complete = true) const {
00181
00182
00183 return writeMS(handler,complete);
00184 }
00185 # endif
00186
00187
00188
00189
00190
00191
00192
00193
00194 # ifndef _LTI_MSC_6
00195 virtual bool read(ioHandler& handler,const bool complete = true)
00196 # else
00197 bool readMS(ioHandler& handler,const bool complete=true)
00198 # endif
00199 {
00200 bool b = true;
00201 if (complete) {
00202 b = handler.readBegin();
00203 }
00204
00205 if (b) {
00206 std::string str;
00207 lti::read(handler,"method",str);
00208 if (str == "LUD") {
00209 method = LUD;
00210 } else {
00211 method = SVD;
00212 }
00213 }
00214
00215 # ifndef _LTI_MSC_6
00216
00217
00218 b = b && linearAlgebraFunctor::parameters::read(handler,false);
00219 # else
00220 bool (functor::parameters::* p_readMS)(ioHandler&,const bool) =
00221 functor::parameters::readMS;
00222 b = b && (this->*p_readMS)(handler,false);
00223 # endif
00224
00225 if (complete) {
00226 b = b && handler.readEnd();
00227 }
00228
00229 return b;
00230 }
00231
00232 # ifdef _LTI_MSC_6
00233 virtual bool read(ioHandler& handler,const bool complete=true) {
00234
00235
00236 return readMS(handler,complete);
00237 }
00238 # endif
00239
00240
00241
00242
00243
00244
00245
00246
00247 enum algorithmType {
00248 LUD = 0,
00249 SVD = 1
00250 };
00251
00252
00253
00254
00255
00256
00257 algorithmType method;
00258 };
00259
00260
00261
00262
00263 matrixInversion();
00264
00265
00266
00267
00268 virtual ~matrixInversion() {};
00269
00270
00271
00272
00273
00274
00275
00276
00277 bool apply(const matrix<T>& theMatrix,
00278 matrix<T>& theInverse) const;
00279
00280
00281
00282
00283
00284
00285
00286
00287 bool apply(matrix<T>& theMatrix) const;
00288
00289
00290
00291
00292 virtual functor* clone() const {
00293 return (new matrixInversion<T>(*this));
00294 };
00295
00296
00297
00298
00299
00300 void useLUD();
00301
00302
00303
00304
00305
00306 void useSVD();
00307
00308
00309
00310
00311 virtual const char* getTypeName() const {return "matrixInversion";};
00312
00313
00314
00315
00316 const parameters& getParameters() const;
00317
00318 protected:
00319
00320
00321
00322
00323 static const T my_epsilon;
00324 };
00325 }
00326
00327 #endif