Changeset 935 in Sophya for trunk/SophyaLib/TArray/sopemtx.h
- Timestamp:
- Apr 14, 2000, 4:03:40 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/sopemtx.h
r926 r935 7 7 #include "tvector.h" 8 8 9 // doivent imperativement reste avant le namespace SOPHYA ! 9 //////////////////////////////////////////////////////////////// 10 //////////////////////////////////////////////////////////////// 11 //------------------------------------------------------------// 12 // Classe TMatrixRC // 13 //------------------------------------------------------------// 14 //////////////////////////////////////////////////////////////// 15 //////////////////////////////////////////////////////////////// 16 17 namespace SOPHYA { 18 10 19 /*! 11 \class S OPHYA::SimpleMatrixOperation20 \class SimpleMatrixOperation 12 21 \ingroup TArray 13 22 Class for simple operation on TMatrix 14 23 \sa TMatrix TArray 15 24 */ 16 /*! 17 \class SOPHYA::LinFitter 18 \ingroup TArray 19 Class for linear fitting 20 \sa TMatrix TArray 21 */ 22 23 namespace SOPHYA { 24 25 //////////////////////////////////////////////////////////////// 25 26 26 //! Class for simple operation on TMatrix 27 27 template <class T> … … 32 32 }; 33 33 34 //////////////////////////////////////////////////////////////// 34 } // Fin du namespace 35 36 //////////////////////////////////////////////////////////////// 37 //////////////////////////////////////////////////////////////// 38 //------------------------------------------------------------// 39 // Resolution de systemes lineaires // 40 //------------------------------------------------------------// 41 //////////////////////////////////////////////////////////////// 42 //////////////////////////////////////////////////////////////// 43 44 namespace SOPHYA { 45 46 //------------------------------------------------------------ 35 47 // Resolution du systeme A*C = B 48 //------------------------------------------------------------ 49 36 50 //! Solve A*C = B for C in place and return determinant 37 51 /*! \ingroup TArray \fn LinSolveInPlace */ … … 70 84 } 71 85 72 // //////////////////////////////////////////////////////////////86 //------------------------------------------------------------ 73 87 // Resolution du systeme A*C = B, avec C retourne dans B 88 //------------------------------------------------------------ 89 74 90 //! Solve A*C = B and return C and determinant 75 91 /*! \ingroup TArray \fn LinSolve */ … … 108 124 } 109 125 110 //////////////////////////////////////////////////////////////// 111 // Inverse d'une matrice 126 } // Fin du namespace 127 128 //////////////////////////////////////////////////////////////// 129 //////////////////////////////////////////////////////////////// 130 //------------------------------------------------------------// 131 // Inverse d'une matrice // 132 //------------------------------------------------------------// 133 //////////////////////////////////////////////////////////////// 134 //////////////////////////////////////////////////////////////// 135 136 namespace SOPHYA { 137 112 138 //! To inverse a TMatrix 113 139 /*! \ingroup TArray \fn Inverse */ … … 127 153 {return SimpleMatrixOperation< complex<r_8> >::Inverse(A);} 128 154 129 //-------------------------------------- 130 // Linear fitting 131 //-------------------------------------- 155 } // Fin du namespace 156 157 158 //////////////////////////////////////////////////////////////// 159 //////////////////////////////////////////////////////////////// 160 //------------------------------------------------------------// 161 // Linear fitting // 162 //------------------------------------------------------------// 163 //////////////////////////////////////////////////////////////// 164 //////////////////////////////////////////////////////////////// 165 166 namespace SOPHYA { 167 168 /*! 169 \class LinFitter 170 \ingroup TArray 171 Class for linear fitting 172 \sa TMatrix TArray 173 */ 132 174 133 175 //! Class for linear fitting
Note:
See TracChangeset
for help on using the changeset viewer.