Ignore:
Timestamp:
11/14/05 10:50:53 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhbase/MHMatrix.cc

    r7130 r7399  
    115115// --------------------------------------------------------------------------
    116116//
     117//  Constructor. Initializes the columns of the matrix with the entries
     118//  from a MDataArray
     119//
     120MHMatrix::MHMatrix(const TMatrix &m, MDataArray *mat, const char *name, const char *title)
     121    : fNumRows(m.GetNrows()), fM(m), fData(mat)
     122{
     123    fName  = name  ? name  : gsDefName.Data();
     124    fTitle = title ? title : gsDefTitle.Data();
     125}
     126
     127// --------------------------------------------------------------------------
     128//
    117129//  Destructor. Does not deleted a user given MDataArray, except IsOwner
    118130//  was called.
Note: See TracChangeset for help on using the changeset viewer.