ltiLinearAlgebraFunctor.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_LINEAR_ALGEBRA_FUNCTOR_H_
00034 #define _LTI_LINEAR_ALGEBRA_FUNCTOR_H_
00035
00036 #include "ltiFunctor.h"
00037 #include "ltiException.h"
00038 #include "ltiVector.h"
00039 #include "ltiMatrix.h"
00040
00041 namespace lti {
00042
00043
00044
00045
00046
00047 class linearAlgebraFunctor : public functor {
00048 public:
00049
00050
00051
00052 class singularMatrixException : public exception {
00053 public:
00054
00055
00056
00057 singularMatrixException()
00058 : exception("a matrix singularity was encountered") {}
00059
00060
00061
00062 virtual const char* getTypeName() const {
00063 return "linearAlgebraFunctor::singularMatrixException";
00064 };
00065 };
00066
00067
00068
00069 class incompatibleDimensionsException : public exception {
00070 public:
00071
00072
00073
00074 incompatibleDimensionsException()
00075 : exception("MathObject dimensions do not match") {};
00076
00077
00078
00079 virtual const char* getTypeName() const {
00080 return "linearAlgebraFunctor::incompatibleDimensionsException";
00081 };
00082 };
00083
00084
00085
00086
00087 class parameters : public functor::parameters {
00088 public:
00089
00090
00091
00092 parameters() : functor::parameters() {
00093 };
00094
00095
00096
00097
00098
00099 parameters(const parameters& other) : functor::parameters() {
00100 copy(other);
00101 };
00102
00103
00104
00105
00106 virtual ~parameters() {
00107 };
00108
00109
00110
00111
00112 const char* getTypeName() const {
00113 return "linearAlgebraFunctor::parameters";
00114 };
00115
00116
00117
00118
00119
00120
00121 parameters& copy(const parameters& other) {
00122 # ifndef _LTI_MSC_6
00123
00124 functor::parameters::copy(other);
00125 # else
00126
00127
00128 functor::parameters& (functor::parameters::* p_copy)
00129 (const functor::parameters&) = functor::parameters::copy;
00130 (this->*p_copy)(other);
00131 # endif
00132
00133 return *this;
00134 };
00135
00136
00137
00138
00139 virtual functor::parameters* clone() const {
00140 return new parameters(*this);
00141 };
00142
00143 # ifndef _LTI_MSC_6
00144
00145
00146
00147
00148
00149
00150
00151 bool write(ioHandler& handler,
00152 const bool complete) const
00153 # else
00154
00155
00156
00157
00158
00159
00160
00161 bool writeMS(ioHandler& handler,
00162 const bool complete) const
00163 # endif
00164 {
00165 bool b(true);
00166
00167 if (complete) {
00168 b = b && handler.writeBegin();
00169 }
00170
00171 if (complete) {
00172 b = b && handler.writeEnd();
00173 }
00174
00175 return b;
00176 }
00177
00178 # ifdef _LTI_MSC_6
00179
00180
00181
00182
00183
00184
00185
00186 bool write(ioHandler& handler,
00187 const bool complete) const {
00188
00189
00190 return writeMS(handler,complete);
00191 }
00192 # endif
00193
00194
00195 # ifndef _LTI_MSC_6
00196
00197
00198
00199
00200
00201
00202
00203 bool read(ioHandler& handler,
00204 const bool complete)
00205 # else
00206
00207
00208
00209
00210
00211
00212
00213 bool readMS(ioHandler& handler,
00214 const bool complete)
00215 # endif
00216 {
00217 bool b(true);
00218
00219 if (complete) {
00220 b = b && handler.readBegin();
00221 }
00222
00223 if (complete) {
00224 b = b && handler.readEnd();
00225 }
00226
00227 return b;
00228 }
00229
00230 # ifdef _LTI_MSC_6
00231
00232
00233
00234
00235
00236
00237
00238 bool read(ioHandler& handler,
00239 const bool complete) {
00240
00241
00242 return readMS(handler,complete);
00243 }
00244 # endif
00245
00246 };
00247
00248
00249
00250
00251 virtual const char* getTypeName() const {
00252 return "linearAlgebraFunctor";
00253 };
00254 };
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264 template<class T,class U=T>
00265 class scalarProduct : public linearAlgebraFunctor {
00266 public:
00267
00268
00269
00270 scalarProduct()
00271 : linearAlgebraFunctor() {};
00272
00273
00274
00275 virtual ~scalarProduct() {};
00276
00277
00278
00279
00280 T& apply(const vector<T>& mult1,
00281 const vector<U>& mult2,
00282 T& result) const;
00283
00284
00285
00286
00287 virtual functor* clone() const {
00288 return (new scalarProduct<T,U>(*this));
00289 };
00290
00291
00292
00293
00294 virtual const char* getTypeName() const {return "scalarProduct";};
00295 };
00296
00297 }
00298
00299 #include "ltiLinearAlgebraFunctor_template.h"
00300
00301 #endif