IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 18, 2004, 9:37:58 PM (22 years ago)
Author:
eugene
Message:

code cleanup for Doxygen support & readability

File:
1 edited

Legend:

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

    r249 r257  
    7070
    7171
    72 /** Do Statistics on an array.  Returns a status value. */
     72/** Do Statistics on an array.  Returns a status value. \ingroup MathGroup */
    7373psStats *
    7474psArrayStats(const psFloatArray *restrict myArray, //!< Array to be analysed
     
    8181/***********************************************************************************************************/
    8282
    83 /** Histograms */
     83/** Histograms  */
    8484typedef struct {
    8585    const psFloatArray *restrict lower; //!< Lower bounds for the bins
     
    9090} psHistogram;
    9191
    92 /** Constructor */
     92/** Constructor \ingroup MathGroup */
    9393psHistogram *
    9494psHistogramAlloc(float lower,           //!< Lower limit for the bins
     
    9797    );
    9898
    99 /** Generic constructor */
     99/** Generic constructor \ingroup MathGroup */
    100100psHistogram *
    101101psHistogramAllocGeneric(const psFloatArray *restrict lower, //!< Lower bounds for the bins
     
    105105    );
    106106
    107 /** Destructor */
     107/** Destructor \ingroup MathGroup **/
    108108void
    109109psHistogramFree(psHistogram *restrict myHist //!< Histogram to destroy
     
    111111
    112112
    113 /** Calculate a histogram */
     113/** Calculate a histogram \ingroup MathGroup **/
    114114psHistogram *
    115115psGetArrayHistogram(psHistogram *restrict myHist, //!< Histogram data
Note: See TracChangeset for help on using the changeset viewer.