00001 #pragma ident "$Id: ARMLambda.hpp 2620 2011-05-26 14:42:13Z yanweignss $" 00002 00008 #ifndef GPSTK_ARMLAMBDA_HPP 00009 #define GPSTK_ARMLAMBDA_HPP 00010 00011 //============================================================================ 00012 // 00013 // This file is part of GPSTk, the GPS Toolkit. 00014 // 00015 // The GPSTk is free software; you can redistribute it and/or modify 00016 // it under the terms of the GNU Lesser General Public License as published 00017 // by the Free Software Foundation; either version 2.1 of the License, or 00018 // any later version. 00019 // 00020 // The GPSTk is distributed in the hope that it will be useful, 00021 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 // GNU Lesser General Public License for more details. 00024 // 00025 // You should have received a copy of the GNU Lesser General Public 00026 // License along with GPSTk; if not, write to the Free Software Foundation, 00027 // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00028 // 00029 // Wei Yan - Chinese Academy of Sciences . 2011 00030 // 00031 //============================================================================ 00032 00033 #include "ARLambda.hpp" 00034 00035 namespace gpstk 00036 { 00045 class ARMLambda : public ARLambda 00046 { 00047 public: 00048 00050 ARMLambda(){} 00051 00052 00054 virtual ~ARMLambda(){} 00055 00056 protected: 00057 00059 virtual int search( const Matrix<double>& L, 00060 const Vector<double>& D, 00061 const Vector<double>& zs, 00062 Matrix<double>& zn, 00063 Vector<double>& s, 00064 const int& m = 2 ); 00065 00066 }; // End of class 'ARMLambda' 00067 00068 00069 } // End of namespace gpstk 00070 00071 00072 #endif //GPSTK_ARMLAMBDA_HPP 00073
1.3.9.1