IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1322


Ignore:
Timestamp:
Jul 28, 2004, 3:59:06 PM (22 years ago)
Author:
evanalst
Message:

Function psHistogramVector name changed to psVectorHistogram per SDR-02.

Location:
trunk/psLib/src
Files:
4 edited

Legend:

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

    r1298 r1322  
    11841184
    11851185    // Populate the histogram array.
    1186     psHistogramVector(robustHistogram, myVector, maskVector, maskVal);
     1186    psVectorHistogram(robustHistogram, myVector, maskVector, maskVal);
    11871187
    11881188    // Smooth the histogram.
     
    16731673
    16741674/*****************************************************************************
    1675 psHistogramVector(out, in, mask, maskVal): this procedure takes as input a
     1675psVectorHistogram(out, in, mask, maskVal): this procedure takes as input a
    16761676preallocated and initialized histogram structure.  It fills the bins in that
    16771677histogram structure in accordance with the input data "in" and the, possibly
     
    16861686    The histogram structure "out".
    16871687 *****************************************************************************/
    1688 psHistogram *psHistogramVector(psHistogram *out,
     1688psHistogram *psVectorHistogram(psHistogram *out,
    16891689                               const psVector *restrict in,
    16901690                               const psVector *restrict mask,
    1691                                int maskVal)
     1691                               unsigned int maskVal)
    16921692{
    16931693    int i = 0;                                  // Loop index variable
  • trunk/psLib/src/dataManip/psStats.h

    r1316 r1322  
    99 *  @author George Gusciora, MHPCC
    1010 *
    11  *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-07-29 01:04:54 $
     11 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-07-29 01:59:06 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    114114
    115115/** Calculate a histogram \ingroup MathGroup **/
    116 psHistogram *psHistogramVector (psHistogram *out,   ///< Histogram data
     116psHistogram *psVectorHistogram (psHistogram *out,   ///< Histogram data
    117117                                const psVector *restrict in,       ///< Vector to analyse
    118118                                const psVector *restrict mask,     ///< Mask dat for input vector
    119                                 int maskVal);       ///< Mask value
     119                                unsigned int maskVal);       ///< Mask value
    120120
    121121bool p_psGetStatValue(
  • trunk/psLib/src/math/psStats.c

    r1298 r1322  
    11841184
    11851185    // Populate the histogram array.
    1186     psHistogramVector(robustHistogram, myVector, maskVector, maskVal);
     1186    psVectorHistogram(robustHistogram, myVector, maskVector, maskVal);
    11871187
    11881188    // Smooth the histogram.
     
    16731673
    16741674/*****************************************************************************
    1675 psHistogramVector(out, in, mask, maskVal): this procedure takes as input a
     1675psVectorHistogram(out, in, mask, maskVal): this procedure takes as input a
    16761676preallocated and initialized histogram structure.  It fills the bins in that
    16771677histogram structure in accordance with the input data "in" and the, possibly
     
    16861686    The histogram structure "out".
    16871687 *****************************************************************************/
    1688 psHistogram *psHistogramVector(psHistogram *out,
     1688psHistogram *psVectorHistogram(psHistogram *out,
    16891689                               const psVector *restrict in,
    16901690                               const psVector *restrict mask,
    1691                                int maskVal)
     1691                               unsigned int maskVal)
    16921692{
    16931693    int i = 0;                                  // Loop index variable
  • trunk/psLib/src/math/psStats.h

    r1316 r1322  
    99 *  @author George Gusciora, MHPCC
    1010 *
    11  *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-07-29 01:04:54 $
     11 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-07-29 01:59:06 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    114114
    115115/** Calculate a histogram \ingroup MathGroup **/
    116 psHistogram *psHistogramVector (psHistogram *out,   ///< Histogram data
     116psHistogram *psVectorHistogram (psHistogram *out,   ///< Histogram data
    117117                                const psVector *restrict in,       ///< Vector to analyse
    118118                                const psVector *restrict mask,     ///< Mask dat for input vector
    119                                 int maskVal);       ///< Mask value
     119                                unsigned int maskVal);       ///< Mask value
    120120
    121121bool p_psGetStatValue(
Note: See TracChangeset for help on using the changeset viewer.