IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 15, 2004, 3:20:03 PM (22 years ago)
Author:
eugene
Message:

added Doxygen \file and \defgroup entries
some basic reorganization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psStats.h

    r226 r247  
    22#define PS_STATS_H
    33
    4 /* Include standard arrays */
    5 #include "psStdArrays.h"
     4/** \file psStats.h
     5 *  \brief basic statistical operations
     6 *  \ingroup MathGroup
     7 */
    68
     9/** statistics which may be calculated */
    710typedef enum {
    811    PS_STAT_SAMPLE_MEAN           = 0x000001,
     
    7376/** Histograms */
    7477typedef struct {
    75     const psFloatArray *restrict lower, *restrict upper; //!< Lower and upper bounds for the bins
     78    const psFloatArray *restrict lower; //!< Lower bounds for the bins
     79    const psFloatArray *restrict upper; //!< Upper bounds for the bins
    7680    psIntArray *nums;                   //!< Number in each of the bins
    7781    const float minVal, maxVal;         //!< Minimum and maximum values
    7882    int minNum, maxNum;                 //!< Number below the minimum and above the maximum
    7983} psHistogram;
    80 
    8184
    8285/** Constructor */
Note: See TracChangeset for help on using the changeset viewer.