Changeset 1322
- Timestamp:
- Jul 28, 2004, 3:59:06 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
dataManip/psStats.c (modified) (3 diffs)
-
dataManip/psStats.h (modified) (2 diffs)
-
math/psStats.c (modified) (3 diffs)
-
math/psStats.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psStats.c
r1298 r1322 1184 1184 1185 1185 // Populate the histogram array. 1186 ps HistogramVector(robustHistogram, myVector, maskVector, maskVal);1186 psVectorHistogram(robustHistogram, myVector, maskVector, maskVal); 1187 1187 1188 1188 // Smooth the histogram. … … 1673 1673 1674 1674 /***************************************************************************** 1675 ps HistogramVector(out, in, mask, maskVal): this procedure takes as input a1675 psVectorHistogram(out, in, mask, maskVal): this procedure takes as input a 1676 1676 preallocated and initialized histogram structure. It fills the bins in that 1677 1677 histogram structure in accordance with the input data "in" and the, possibly … … 1686 1686 The histogram structure "out". 1687 1687 *****************************************************************************/ 1688 psHistogram *ps HistogramVector(psHistogram *out,1688 psHistogram *psVectorHistogram(psHistogram *out, 1689 1689 const psVector *restrict in, 1690 1690 const psVector *restrict mask, 1691 int maskVal)1691 unsigned int maskVal) 1692 1692 { 1693 1693 int i = 0; // Loop index variable -
trunk/psLib/src/dataManip/psStats.h
r1316 r1322 9 9 * @author George Gusciora, MHPCC 10 10 * 11 * @version $Revision: 1.1 7$ $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 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 114 114 115 115 /** Calculate a histogram \ingroup MathGroup **/ 116 psHistogram *ps HistogramVector(psHistogram *out, ///< Histogram data116 psHistogram *psVectorHistogram (psHistogram *out, ///< Histogram data 117 117 const psVector *restrict in, ///< Vector to analyse 118 118 const psVector *restrict mask, ///< Mask dat for input vector 119 int maskVal); ///< Mask value119 unsigned int maskVal); ///< Mask value 120 120 121 121 bool p_psGetStatValue( -
trunk/psLib/src/math/psStats.c
r1298 r1322 1184 1184 1185 1185 // Populate the histogram array. 1186 ps HistogramVector(robustHistogram, myVector, maskVector, maskVal);1186 psVectorHistogram(robustHistogram, myVector, maskVector, maskVal); 1187 1187 1188 1188 // Smooth the histogram. … … 1673 1673 1674 1674 /***************************************************************************** 1675 ps HistogramVector(out, in, mask, maskVal): this procedure takes as input a1675 psVectorHistogram(out, in, mask, maskVal): this procedure takes as input a 1676 1676 preallocated and initialized histogram structure. It fills the bins in that 1677 1677 histogram structure in accordance with the input data "in" and the, possibly … … 1686 1686 The histogram structure "out". 1687 1687 *****************************************************************************/ 1688 psHistogram *ps HistogramVector(psHistogram *out,1688 psHistogram *psVectorHistogram(psHistogram *out, 1689 1689 const psVector *restrict in, 1690 1690 const psVector *restrict mask, 1691 int maskVal)1691 unsigned int maskVal) 1692 1692 { 1693 1693 int i = 0; // Loop index variable -
trunk/psLib/src/math/psStats.h
r1316 r1322 9 9 * @author George Gusciora, MHPCC 10 10 * 11 * @version $Revision: 1.1 7$ $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 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 114 114 115 115 /** Calculate a histogram \ingroup MathGroup **/ 116 psHistogram *ps HistogramVector(psHistogram *out, ///< Histogram data116 psHistogram *psVectorHistogram (psHistogram *out, ///< Histogram data 117 117 const psVector *restrict in, ///< Vector to analyse 118 118 const psVector *restrict mask, ///< Mask dat for input vector 119 int maskVal); ///< Mask value119 unsigned int maskVal); ///< Mask value 120 120 121 121 bool p_psGetStatValue(
Note:
See TracChangeset
for help on using the changeset viewer.
