Changeset 935 in Sophya for trunk/SophyaLib/TArray/sopemtx.cc
- Timestamp:
- Apr 14, 2000, 4:03:40 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/sopemtx.cc
r926 r935 110 110 111 111 112 //! Multiply two TMatrixRC 112 //! Scalar product of two TMatrixRC 113 /*! 114 \return sum[ a(i) * b(i) ] 115 */ 113 116 template <class T> 114 117 inline T operator * (const TMatrixRC<T>& a, const TMatrixRC<T>& b) … … 123 126 } 124 127 125 //! Get the step in datas for a TMatrix for type rckind (line/col/diag) 128 //! Get the step in datas for a TMatrix for type rckind 129 /*! 130 \param rckind : line, column or diagonal 131 \return step in TMatrix along TMatrixRC 132 */ 126 133 template <class T> 127 134 inline uint_4 TMatrixRC<T>::Step(const TMatrix<T>& m, TRCKind rckind) … … 131 138 return 0; } 132 139 133 /*! Get the origin of datas for a TMatrix for type rckind and 134 number index (line/col/diag). ex: origine for line "index". */ 140 //! Get the origin of datas. 141 /*! 142 Get the origin of datas in the TMatrix for a TMatrixRC for type 143 \b rckind and index \b index . 144 \param rckind : line, column or diagonal 145 \param index : index of the line or column. 146 \return adress of the first element in datas. 147 */ 135 148 template <class T> 136 149 inline T* TMatrixRC<T>::Org(const TMatrix<T>& m, TRCKind rckind, uint_4 index) … … 156 169 157 170 //////////////////////////////////////////////////////////////// 158 //! Typedef to simplif ier TMatrixRC<r_8>171 //! Typedef to simplify TMatrixRC<r_8> writing 159 172 typedef TMatrixRC<r_8> MatrixRC; 160 173 … … 428 441 //! Gaussian pivoting 429 442 /*! 430 Diagonalize matrix \b a, doing the same opreations on matrix \b b 431 \return determinat of \b a 443 Diagonalize matrix \b a, doing the same operations on matrix \b b 444 \return determinat of \b a. 445 446 If \b b is identity matrix, return inverse of \b a 432 447 */ 433 448 template <class T> … … 712 727 template class SimpleMatrixOperation< complex<r_8> >; 713 728 #endif 729 730 731 732 733 734 735 736 737 738 739 740 741
Note:
See TracChangeset
for help on using the changeset viewer.