Changeset 3870 in Sophya
- Timestamp:
- Aug 12, 2010, 5:19:59 PM (15 years ago)
- Location:
- trunk/SophyaLib/TArray
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/diagmtx.h
r3819 r3870 1 1 // This may look like C code, but it is really -*- C++ -*- 2 // This code is part of the SOPHYA library 3 // (C) Univ. Paris-Sud (C) LAL-IN2P3/CNRS (C) IRFU-CEA 4 // (C) R. Ansari, C.Magneville 2009-2010 2 5 3 6 #ifndef DIAGMTX_H_SEEN … … 6 9 #include "spesqmtx.h" 7 10 8 // doit etre mis en dehors du namespace 11 namespace SOPHYA { 12 9 13 /*! 10 \class SOPHYA::DiagonalMatrix14 \class DiagonalMatrix 11 15 \ingroup TArray 12 16 \brief Class representing a diagonal matrix. … … 17 21 */ 18 22 19 namespace SOPHYA {20 21 //! Class for inferior triangular matrix (base class for the class Alm)22 23 template <class T> 23 24 class DiagonalMatrix : public SpecialSquareMatrix<T> { -
trunk/SophyaLib/TArray/spesqmtx.h
r3831 r3870 2 2 // This code is part of the SOPHYA library 3 3 // (C) Univ. Paris-Sud (C) LAL-IN2P3/CNRS (C) IRFU-CEA 4 // (C) R. Ansari, C.Magneville 2009 4 // (C) R. Ansari, C.Magneville 2009-2010 5 5 6 6 #ifndef SPESQMTX_H_SEEN -
trunk/SophyaLib/TArray/symmtx.h
r3809 r3870 1 1 // This may look like C code, but it is really -*- C++ -*- 2 // This code is part of the SOPHYA library 3 // (C) Univ. Paris-Sud (C) LAL-IN2P3/CNRS (C) IRFU-CEA 4 // (C) R. Ansari, C.Magneville 2009-2010 2 5 3 6 #ifndef SYMMTX_H_SEEN … … 6 9 #include "spesqmtx.h" 7 10 8 // doit etre mis en dehors du namespace 11 namespace SOPHYA { 12 9 13 /*! 10 \class S OPHYA::SymmetricMatrix14 \class SymmetricMatrix 11 15 \ingroup TArray 12 16 \brief Class representing a symmetric matrix. … … 27 31 sub matrix extraction method. 28 32 */ 29 30 namespace SOPHYA {31 33 32 //! Class for inferior triangular matrix (base class for the class Alm)33 34 template <class T> 34 35 class SymmetricMatrix : public SpecialSquareMatrix<T> { -
trunk/SophyaLib/TArray/trngmtx.h
r3809 r3870 1 1 // This may look like C code, but it is really -*- C++ -*- 2 // This code is part of the SOPHYA library 3 // (C) Univ. Paris-Sud (C) LAL-IN2P3/CNRS (C) IRFU-CEA 4 // (C) R. Ansari, C.Magneville 2009-2010 2 5 3 6 #ifndef TRNGMTX_H_SEEN … … 6 9 #include "spesqmtx.h" 7 10 8 // doit etre mis en dehors du namespace 11 12 namespace SOPHYA { 13 9 14 /*! 10 \class SOPHYA::LowerTriangularMatrix15 \class LowerTriangularMatrix 11 16 \ingroup TArray 12 17 \brief Class representing a lower (inferior) triangular matrix. This is the … … 29 34 sub matrix extraction method. 30 35 */ 31 32 namespace SOPHYA {33 36 34 //! Class for inferior triangular matrix (base class for the class Alm)35 37 template <class T> 36 38 class LowerTriangularMatrix : public SpecialSquareMatrix<T> {
Note:
See TracChangeset
for help on using the changeset viewer.