00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _LSQUARES_H_
00012 #define _LSQUARES_H_
00013
00014 #include "Vector.H"
00015 #include "REAL.H"
00016 #include "RealVect.H"
00017 #include "NamespaceHeader.H"
00018
00019 class LSquares
00020 {
00021 public:
00022 void LeastSquares(Real** A,
00023 Vector<Real>&x,
00024 const Vector<Real>&rhs);
00025
00026 int gaussElim(Real**A,
00027 Vector<Real>& rhs);
00028
00029 void swapRows(Real** A,
00030 const int& rowi,
00031 const int& rowj,
00032 const int&numberOfCols);
00033
00034 void swapRows(Vector<Real>& rhs,
00035 const int& currRow,
00036 const int& pivot);
00037
00038 int findPivot(Real** A,
00039 const int& currCol,
00040 const int& currRow,
00041 const int& numRows,
00042 int& pivot);
00043
00044 void addRows(Vector<Real>& rhs,
00045 const int& rowi,
00046 const Real& alpha,
00047 const int& rowj);
00048
00049 void addRows(Real** A,
00050 const int& rowi,
00051 const Real& alpha,
00052 const int& rowj,
00053 const int& numberOfCols);
00054
00055 void timesBeta(Vector<Real>&rhs,
00056 const int& currRow,
00057 const Real& Beta);
00058
00059 void timesBeta(Real** A,
00060 const int& rowi,
00061 const Real& Beta,
00062 const int& numberOfcols);
00063
00064 void transpose(Real** a_A,
00065 Real ** a_Atrans,
00066 const int& a_numRows,
00067 const int& a_numCols);
00068
00069 void matMul(Real** a_A,
00070 Real** a_B,
00071 Real** a_C,
00072 const int& a_numRowsA,
00073 const int& a_numColsA,
00074 const int& a_numColsB);
00075
00076 void backSolve(Real** a_A,
00077 const Vector<Real>& a_rhs,
00078 const int& a_numArows,
00079 Vector<Real>& a_x);
00080
00081 void AtimesX(Real** A,
00082 const Vector<Real>&x,
00083 const int& numRowsA,
00084 Vector<Real>& Ax);
00085
00086 void allocArray(const int& rows,
00087 const int& cols,
00088 Real**& A);
00089
00090 void freeArray(const int& rows,
00091 const int& cols,
00092 Real**& A);
00093
00094 void output(const int& rows,
00095 const int& cols,
00096 Real**& A,
00097 char* name);
00098 };
00099
00100 #include "NamespaceFooter.H"
00101 #endif