Changeset 7410 for trunk/MagicSoft/Mars
- Timestamp:
- 11/18/05 17:25:44 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MMath.cc
r7409 r7410 335 335 // see: http://mathworld.wolfram.com/LeastSquaresFittingLogarithmic.html 336 336 // 337 TArrayD LeastSqFitLog(Int_t n, Double_t *x, Double_t *y)337 TArrayD MMath::LeastSqFitLog(Int_t n, Double_t *x, Double_t *y) 338 338 { 339 339 Double_t sumylnx = 0; … … 367 367 // see: http://mathworld.wolfram.com/LeastSquaresFittingPowerLaw.html 368 368 // 369 TArrayD LeastSqFitPowerLaw(Int_t n, Double_t *x, Double_t *y)369 TArrayD MMath::LeastSqFitPowerLaw(Int_t n, Double_t *x, Double_t *y) 370 370 { 371 371 Double_t sumlnxlny = 0;
Note:
See TracChangeset
for help on using the changeset viewer.