IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 21, 2004, 7:09:32 PM (22 years ago)
Author:
gusciora
Message:

Changed types to PS types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psStats.h

    r2778 r2788  
    1010 *  @author George Gusciora, MHPCC
    1111 *
    12  *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-12-21 20:42:07 $
     12 *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-12-22 05:09:32 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5656typedef struct
    5757{
    58     double sampleMean;          ///< formal mean of sample
    59     double sampleMedian;        ///< formal median of sample
    60     double sampleStdev;         ///< standard deviation of sample
    61     double sampleUQ;            ///< upper quartile of sample
    62     double sampleLQ;            ///< lower quartile of sample
    63     double robustMean;          ///< robust mean of array
    64     double robustMedian;        ///< robust median of array
    65     double robustMode;          ///< Robust mode of array
    66     double robustStdev;         ///< robust standard deviation of array
    67     double robustUQ;            ///< robust upper quartile
    68     double robustLQ;            ///< robust lower quartile
     58    psF64 sampleMean;          ///< formal mean of sample
     59    psF64 sampleMedian;        ///< formal median of sample
     60    psF64 sampleStdev;         ///< standard deviation of sample
     61    psF64 sampleUQ;            ///< upper quartile of sample
     62    psF64 sampleLQ;            ///< lower quartile of sample
     63    psF64 robustMean;          ///< robust mean of array
     64    psF64 robustMedian;        ///< robust median of array
     65    psF64 robustMode;          ///< Robust mode of array
     66    psF64 robustStdev;         ///< robust standard deviation of array
     67    psF64 robustUQ;            ///< robust upper quartile
     68    psF64 robustLQ;            ///< robust lower quartile
    6969    psS32 robustN50;              ///<
    7070    psS32 robustNfit;             ///<
    71     double clippedMean;         ///< Nsigma clipped mean
    72     double clippedStdev;        ///< standard deviation after clipping
     71    psF64 clippedMean;         ///< Nsigma clipped mean
     72    psF64 clippedStdev;        ///< standard deviation after clipping
    7373    psS32 clippedNvalues;         ///< ???
    74     double clipSigma;           ///< Nsigma used for clipping; user input
     74    psF64 clipSigma;           ///< Nsigma used for clipping; user input
    7575    psS32 clipIter;               ///< Number of clipping iterations; user input
    76     double min;                 ///< minimum data value in array
    77     double max;                 ///< maximum data value in array
    78     double binsize;             ///<
     76    psF64 min;                 ///< minimum data value in array
     77    psF64 max;                 ///< maximum data value in array
     78    psF64 binsize;             ///<
    7979    psStatsOptions options;     ///< bitmask of calculated values
    8080}
     
    132132 */
    133133psHistogram* psHistogramAlloc(
    134     float lower,                       ///< Lower limit for the bins
    135     float upper,                       ///< Upper limit for the bins
     134    psF32 lower,                       ///< Lower limit for the bins
     135    psF32 upper,                       ///< Upper limit for the bins
    136136    psS32 n                              ///< Number of bins
    137137);
     
    172172    ///< the statistic struct to operate on
    173173
    174     double *value
     174    psF64 *value
    175175    ///< if return is true, this is set to the specified statistic value by stats->options
    176176);
Note: See TracChangeset for help on using the changeset viewer.