Changeset 894 in Sophya for trunk/SophyaLib/TArray/matharr.h


Ignore:
Timestamp:
Apr 12, 2000, 7:42:33 PM (25 years ago)
Author:
ansari
Message:

documentation cmv 12/4/00

File:
1 edited

Legend:

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

    r882 r894  
    1212namespace SOPHYA {
    1313
    14 //       Class for simple mathematical operation on arrays
    15 //   Instanciated only for real and double (r_4, r_8) type arrays
    16 //                                                Reza 03/2000
     14//! Class for simple mathematical operation on arrays
     15/*!
     16  \warning Instanciated only for \b real and \b double (r_4, r_8) type arrays
     17*/
    1718template <class T>
    1819class MathArray {
     
    8485#endif
    8586
     87//! Return \b mean and \b sigma of elements of array \b a
    8688template <class T>
    8789inline double MeanSigma(const TArray<T>& a, double & mean, double & sig)
    8890  { MathArray<T> ma;   return( ma.MeanSigma(a, mean, sig) ); }
    8991
     92//! Return \b mean of elements of array \b a
    9093template <class T>
    9194inline double Mean(const TArray<T>& a)
Note: See TracChangeset for help on using the changeset viewer.