Changeset 3810 in Sophya for trunk/SophyaLib/Samba/alm.h
- Timestamp:
- Jul 26, 2010, 4:08:05 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/Samba/alm.h
r3613 r3810 8 8 #include "randinterf.h" 9 9 #include "nbmath.h" 10 #include "tr iangmtx.h"10 #include "trngmtx.h" 11 11 #include "tvector.h" 12 12 … … 15 15 // ----- Classe Alm 16 16 template <class T> 17 class Alm : public TriangularMatrix< complex<T> > {17 class Alm : public LowerTriangularMatrix< complex<T> > { 18 18 public : 19 19 20 Alm() : TriangularMatrix<complex<T> >() {}20 Alm() : LowerTriangularMatrix<complex<T> >() {} 21 21 //! instanciate the class from the maximum value of the index \f$l\f$ in the sequence of the \f$a_{lm}\f$'s 22 Alm(sa_size_t nlmax) : TriangularMatrix<complex<T> >(nlmax+1) {}22 Alm(sa_size_t nlmax) : LowerTriangularMatrix<complex<T> >(nlmax+1) {} 23 23 //! copy constructor 24 Alm(const Alm<T>& a, bool share=false) : TriangularMatrix<complex<T> >(a, share) {}24 Alm(const Alm<T>& a, bool share=false) : LowerTriangularMatrix<complex<T> >(a, share) {} 25 25 //! Constructor, generates alm from a cl vector 26 26 Alm(const TVector<T> & clin, const r_8 fwhm) ;
Note:
See TracChangeset
for help on using the changeset viewer.