Changeset 7410 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/18/05 17:25:44 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MMath.cc

    r7409 r7410  
    335335// see: http://mathworld.wolfram.com/LeastSquaresFittingLogarithmic.html
    336336//
    337 TArrayD LeastSqFitLog(Int_t n, Double_t *x, Double_t *y)
     337TArrayD MMath::LeastSqFitLog(Int_t n, Double_t *x, Double_t *y)
    338338{
    339339    Double_t sumylnx  = 0;
     
    367367// see: http://mathworld.wolfram.com/LeastSquaresFittingPowerLaw.html
    368368//
    369 TArrayD LeastSqFitPowerLaw(Int_t n, Double_t *x, Double_t *y)
     369TArrayD MMath::LeastSqFitPowerLaw(Int_t n, Double_t *x, Double_t *y)
    370370{
    371371    Double_t sumlnxlny  = 0;
Note: See TracChangeset for help on using the changeset viewer.