Ignore:
Timestamp:
03/18/03 19:03:09 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1829 r1830  
    216216    fM.ResizeTo(fM.GetNrows()*2, fData->GetNumEntries());
    217217
    218     for (int x=0; x<m.GetNcols(); x++)
    219     {
    220         TVector vold(fM.GetNcols());
    221         TMatrixColumn(fM, x) = vold = TMatrixColumn(m, x);
    222     }
     218    TVector vold(fM.GetNcols());
     219    for (int x=0; x<m.GetNrows(); x++)
     220        TMatrixRow(fM, x) = vold = TMatrixRow(m, x);
    223221}
    224222
     
    254252    fM.ResizeTo(fNumRow, fData->GetNumEntries());
    255253
    256     for (int x=0; x<fM.GetNcols(); x++)
    257     {
    258         TVector vold(fM.GetNcols());
    259         TMatrixColumn(fM, x) = vold = TMatrixColumn(m, x);
    260     }
     254    TVector vold(fM.GetNcols());
     255    for (int x=0; x<fM.GetNrows(); x++)
     256        TMatrixRow(fM, x) = vold = TMatrixRow(m, x);
    261257
    262258    return kTRUE;
     
    597593    for (int i=0; i<n; i++)
    598594    {
    599         TVector vold(n);
     595        TVector vold(fM.GetNcols());
    600596        TMatrixRow(m, i) = vold = TMatrixRow(fM, idx[i]);
    601597    }
Note: See TracChangeset for help on using the changeset viewer.