Changeset 3332 in Sophya for trunk/SophyaLib/TArray/sopemtx.h


Ignore:
Timestamp:
Oct 3, 2007, 3:04:34 PM (18 years ago)
Author:
ansari
Message:

1- Methode TArray::SumX2() renommee en ::SumSq()
2- Methode TArray::Norm2() appelle maintenant SumSq() - sauf pour les
tableaux complexes, ou on calcule Sum[el x conj(el)]=Sum[module2]
3- Nettoyage fichier sopemtx.cc (utilisation sa_size_t pour supprimer
les warnings g++

Reza , 02/10/2007

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/sopemtx.h

    r2917 r3332  
    167167//! Linear fitting
    168168r_8 LinFit(const TVector<T>& x, const TVector<T>& y,
    169            uint_4 nf, T (*f)(uint_4,T), TVector<T>& c);
     169           sa_size_t nf, T (*f)(sa_size_t,T), TVector<T>& c);
    170170
    171171//! Linear fitting
     
    174174//! Linear fitting with errors
    175175r_8 LinFit(const TVector<T>& x, const TVector<T>& y, const TVector<T>& errY2,
    176            uint_4 nf,T (*f)(uint_4,T), TVector<T>& c, TVector<T>& errC);
     176           sa_size_t nf,T (*f)(sa_size_t,T), TVector<T>& c, TVector<T>& errC);
    177177
    178178//! Linear fitting with errors
Note: See TracChangeset for help on using the changeset viewer.