diff --git a/radio/Vector.hpp b/radio/Vector.hpp index bf66609..dc35cd1 100644 --- a/radio/Vector.hpp +++ b/radio/Vector.hpp @@ -9,7 +9,6 @@ #define _RADIO_VECTOR_HPP_ #define VECTOR_USE_EIGEN -//#define VECTOR_USE_ARMADILLO #include #include @@ -44,31 +43,7 @@ typedef Eigen::Map RMap; #endif #ifdef VECTOR_USE_ARMADILLO -#if 1 -template -class Vec : public arma::Col -{ - public: - void setZero() - { - - } -}; -class RVec : public Vec -{ -}; - -class CVec : public Vec -{ -}; -#endif -//typedef arma::col RVec; -//typedef arma::col CVec; - -typedef arma::Mat RMat; -typedef arma::Mat CMat; - -typedef arma::Map RMap; +#error "Vector: Implement armadillo support!" #endif static ComplexScalar toComplexScalar(cpx_t v)