// @(#)root/matrix:$Id: TMatrixTSym.h 22039 2008-02-07 05:48:31Z brun $ // Authors: Fons Rademakers, Eddy Offermann Nov 2003 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TMatrixTSym #define ROOT_TMatrixTSym ////////////////////////////////////////////////////////////////////////// // // // TMatrixTSym // // // // Implementation of a symmetric matrix in the linear algebra package // // // // Note that in this implementation both matrix element m[i][j] and // // m[j][i] are updated and stored in memory . However, when making the // // object persistent only the upper right triangle is stored . // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TMatrixTBase #include "TMatrixTBase.h" #endif #ifndef ROOT_TMatrixTUtils #include "TMatrixTUtils.h" #endif templateclass TMatrixT; templateclass TMatrixTSymLazy; templateclass TVectorT; template class TMatrixTSym : public TMatrixTBase { protected: Element fDataStack[TMatrixTBase::kSizeMax]; //! data container Element *fElements; //[fNelems] elements themselves Element *New_m (Int_t size); void Delete_m(Int_t size,Element*&); Int_t Memcpy_m(Element *newp,const Element *oldp,Int_t copySize, Int_t newSize,Int_t oldSize); void Allocate(Int_t nrows,Int_t ncols,Int_t row_lwb = 0,Int_t col_lwb = 0,Int_t init = 0, Int_t nr_nonzeros = -1); public: enum {kWorkMax = 100}; // size of work array enum EMatrixCreatorsOp1 { kZero,kUnit,kTransposed,kInverted,kAtA }; enum EMatrixCreatorsOp2 { kPlus,kMinus }; TMatrixTSym() { fElements = 0; } explicit TMatrixTSym(Int_t nrows); TMatrixTSym(Int_t row_lwb,Int_t row_upb); TMatrixTSym(Int_t nrows,const Element *data,Option_t *option=""); TMatrixTSym(Int_t row_lwb,Int_t row_upb,const Element *data,Option_t *option=""); TMatrixTSym(const TMatrixTSym &another); template TMatrixTSym(const TMatrixTSym &another) { R__ASSERT(another.IsValid()); Allocate(another.GetNrows(),another.GetNcols(),another.GetRowLwb(),another.GetColLwb()); *this = another; } TMatrixTSym(EMatrixCreatorsOp1 op,const TMatrixTSym &prototype); TMatrixTSym(EMatrixCreatorsOp1 op,const TMatrixT &prototype); TMatrixTSym(const TMatrixTSym &a,EMatrixCreatorsOp2 op,const TMatrixTSym &b); TMatrixTSym(const TMatrixTSymLazy &lazy_constructor); virtual ~TMatrixTSym() { Clear(); } // Elementary constructors void TMult(const TMatrixT &a); void TMult(const TMatrixTSym &a); void Mult (const TMatrixTSym &a) { TMult(a); } void Plus (const TMatrixTSym &a,const TMatrixTSym &b); void Minus(const TMatrixTSym &a,const TMatrixTSym &b); virtual const Element *GetMatrixArray () const; virtual Element *GetMatrixArray (); virtual const Int_t *GetRowIndexArray() const { return 0; } virtual Int_t *GetRowIndexArray() { return 0; } virtual const Int_t *GetColIndexArray() const { return 0; } virtual Int_t *GetColIndexArray() { return 0; } virtual TMatrixTBase &SetRowIndexArray(Int_t * /*data*/) { MayNotUse("SetRowIndexArray(Int_t *)"); return *this; } virtual TMatrixTBase &SetColIndexArray(Int_t * /*data*/) { MayNotUse("SetColIndexArray(Int_t *)"); return *this; } virtual void Clear (Option_t * /*option*/ ="") { if (this->fIsOwner) Delete_m(this->fNelems,fElements); else fElements = 0; this->fNelems = 0; } virtual Bool_t IsSymmetric() const { return kTRUE; } TMatrixTSym &Use (Int_t row_lwb,Int_t row_upb,Element *data); const TMatrixTSym &Use (Int_t row_lwb,Int_t row_upb,const Element *data) const { return (const TMatrixTSym&) (((TMatrixTSym *)this)->Use(row_lwb,row_upb,(Element *)data)); } TMatrixTSym &Use (Int_t nrows,Element *data); const TMatrixTSym &Use (Int_t nrows,const Element *data) const; TMatrixTSym &Use (TMatrixTSym &a); const TMatrixTSym &Use (const TMatrixTSym &a) const; TMatrixTSym &GetSub (Int_t row_lwb,Int_t row_upb,TMatrixTSym &target,Option_t *option="S") const; virtual TMatrixTBase &GetSub (Int_t row_lwb,Int_t row_upb,Int_t col_lwb,Int_t col_upb, TMatrixTBase &target,Option_t *option="S") const; TMatrixTSym GetSub (Int_t row_lwb,Int_t row_upb,Int_t col_lwb,Int_t col_upb,Option_t *option="S") const; TMatrixTSym &SetSub (Int_t row_lwb,const TMatrixTBase &source); virtual TMatrixTBase &SetSub (Int_t row_lwb,Int_t col_lwb,const TMatrixTBase &source); virtual TMatrixTBase &SetMatrixArray(const Element *data, Option_t *option=""); virtual TMatrixTBase &Shift (Int_t row_shift,Int_t col_shift); virtual TMatrixTBase &ResizeTo (Int_t nrows,Int_t ncols,Int_t nr_nonzeros=-1); virtual TMatrixTBase &ResizeTo (Int_t row_lwb,Int_t row_upb,Int_t col_lwb,Int_t col_upb,Int_t nr_nonzeros=-1); inline TMatrixTBase &ResizeTo (const TMatrixTSym &m) { return ResizeTo(m.GetRowLwb(),m.GetRowUpb(),m.GetColLwb(),m.GetColUpb()); } virtual Double_t Determinant () const; virtual void Determinant (Double_t &d1,Double_t &d2) const; TMatrixTSym &Invert (Double_t *det=0); TMatrixTSym &InvertFast (Double_t *det=0); TMatrixTSym &Transpose (const TMatrixTSym &source); inline TMatrixTSym &T () { return this->Transpose(*this); } TMatrixTSym &Rank1Update (const TVectorT &v,Element alpha=1.0); TMatrixTSym &Similarity (const TMatrixT &n); TMatrixTSym &Similarity (const TMatrixTSym &n); Element Similarity (const TVectorT &v) const; TMatrixTSym &SimilarityT (const TMatrixT &n); // Either access a_ij as a(i,j) inline Element operator()(Int_t rown,Int_t coln) const; inline Element &operator()(Int_t rown,Int_t coln); // or as a[i][j] inline const TMatrixTRow_const operator[](Int_t rown) const { return TMatrixTRow_const(*this,rown); } inline TMatrixTRow operator[](Int_t rown) { return TMatrixTRow (*this,rown); } TMatrixTSym &operator= (const TMatrixTSym &source); TMatrixTSym &operator= (const TMatrixTSymLazy &source); template TMatrixTSym &operator= (const TMatrixTSym &source) { if (!AreCompatible(*this,source)) { Error("operator=(const TMatrixTSym2 &)","matrices not compatible"); return *this; } TObject::operator=(source); const Element2 * const ps = source.GetMatrixArray(); Element * const pt = this->GetMatrixArray(); for (Int_t i = 0; i < this->fNelems; i++) pt[i] = ps[i]; this->fTol = source.GetTol(); return *this; } TMatrixTSym &operator= (Element val); TMatrixTSym &operator-=(Element val); TMatrixTSym &operator+=(Element val); TMatrixTSym &operator*=(Element val); TMatrixTSym &operator+=(const TMatrixTSym &source); TMatrixTSym &operator-=(const TMatrixTSym &source); TMatrixTBase &Apply(const TElementActionT &action); TMatrixTBase &Apply(const TElementPosActionT &action); virtual TMatrixTBase &Randomize (Element alpha,Element beta,Double_t &seed); virtual TMatrixTSym &RandomizePD(Element alpha,Element beta,Double_t &seed); const TMatrixT EigenVectors(TVectorT &eigenValues) const; ClassDef(TMatrixTSym,2) // Template of Symmetric Matrix class }; template inline const Element *TMatrixTSym::GetMatrixArray() const { return fElements; } template inline Element *TMatrixTSym::GetMatrixArray() { return fElements; } template inline TMatrixTSym &TMatrixTSym::Use (Int_t nrows,Element *data) { return Use(0,nrows-1,data); } template inline const TMatrixTSym &TMatrixTSym::Use (Int_t nrows,const Element *data) const { return Use(0,nrows-1,data); } template inline TMatrixTSym &TMatrixTSym::Use (TMatrixTSym &a) { return Use(a.GetRowLwb(),a.GetRowUpb(),a.GetMatrixArray()); } template inline const TMatrixTSym &TMatrixTSym::Use (const TMatrixTSym &a) const { return Use(a.GetRowLwb(),a.GetRowUpb(),a.GetMatrixArray()); } template inline TMatrixTSym TMatrixTSym::GetSub (Int_t row_lwb,Int_t row_upb,Int_t col_lwb,Int_t col_upb, Option_t *option) const { TMatrixTSym tmp; this->GetSub(row_lwb,row_upb,col_lwb,col_upb,tmp,option); return tmp; } template inline Element TMatrixTSym::operator()(Int_t rown,Int_t coln) const { R__ASSERT(this->IsValid()); const Int_t arown = rown-this->fRowLwb; const Int_t acoln = coln-this->fColLwb; if (arown >= this->fNrows || arown < 0) { Error("operator()","Request row(%d) outside matrix range of %d - %d",rown,this->fRowLwb,this->fRowLwb+this->fNrows); return 0.0; } if (acoln >= this->fNcols || acoln < 0) { Error("operator()","Request column(%d) outside matrix range of %d - %d",coln,this->fColLwb,this->fColLwb+this->fNcols); return 0.0; } return (fElements[arown*this->fNcols+acoln]); } template inline Element &TMatrixTSym::operator()(Int_t rown,Int_t coln) { R__ASSERT(this->IsValid()); const Int_t arown = rown-this->fRowLwb; const Int_t acoln = coln-this->fColLwb; if (arown >= this->fNrows || arown < 0) { Error("operator()","Request row(%d) outside matrix range of %d - %d",rown,this->fRowLwb,this->fRowLwb+this->fNrows); return fElements[0]; } if (acoln >= this->fNcols || acoln < 0) { Error("operator()","Request column(%d) outside matrix range of %d - %d",coln,this->fColLwb,this->fColLwb+this->fNcols); return fElements[0]; } return (fElements[arown*this->fNcols+acoln]); } template Bool_t operator== (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator+ (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator+ (const TMatrixTSym &source1, Element val); template TMatrixTSym operator+ ( Element val ,const TMatrixTSym &source2); template TMatrixTSym operator- (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator- (const TMatrixTSym &source1, Element val); template TMatrixTSym operator- ( Element val ,const TMatrixTSym &source2); template TMatrixTSym operator* (const TMatrixTSym &source, Element val ); template TMatrixTSym operator* ( Element val, const TMatrixTSym &source ); template TMatrixTSym operator&& (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator|| (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator> (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator>= (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator<= (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym operator< (const TMatrixTSym &source1,const TMatrixTSym &source2); template TMatrixTSym &Add (TMatrixTSym &target, Element scalar,const TMatrixTSym &source); template TMatrixTSym &ElementMult(TMatrixTSym &target,const TMatrixTSym &source); template TMatrixTSym &ElementDiv (TMatrixTSym &target,const TMatrixTSym &source); #endif