Home
last modified time | relevance | path

Searched refs:theMean (Results 1 – 13 of 13) sorted by relevance

/dports/benchmarks/polygraph/polygraph-4.13.0/src/xstd/
H A DrndDistrs.h15 ConstDistr(RndGen *aGen, double aMean): RndDistr(aGen), theMean(aMean) {} in ConstDistr()
19 virtual double mean() const { return theMean; } in mean()
22 virtual double trial() { return theMean; } in trial()
25 double theMean;
54 ExpDistr(RndGen *aGen, double aMean): RndDistr(aGen), theMean(aMean) {} in ExpDistr()
58 virtual double mean() const { return theMean; } in mean()
59 virtual double sdev() const { return theMean; } in sdev()
64 double theMean;
71 …NormDistr(RndGen *aGen, double aMean, double aSDev): RndDistr(aGen), theMean(aMean), theSDev(aSDev… in NormDistr()
75 virtual double mean() const { return theMean; } in mean()
[all …]
H A DrndDistrs.cc28 return -theMean * log(theGen->trial()); in trial()
37 return theMean + theSDev*(sum - 6.0); in trial()
42 p(os, theMean, 0); in print()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/imaging/
H A DossimImageStatisticsSource.cpp120 theMean[bandIdx] += *dataPtr; in computeStatisticsTemplate()
135 theMean[bandIdx] /= pixelCount; in computeStatisticsTemplate()
148 return theMean; in getMean()
163 theMean.clear(); in clearStatistics()
170 theMean.resize(size); in setStatsSize()
174 std::fill(theMean.begin(), in setStatsSize()
175 theMean.end(), in setStatsSize()
H A DossimArcInfoGridWriter.cpp354 aigStats.theMean = (aigStats.theMax-aigStats.theMin)/2.0; in writeBinaryAigStats()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/support_data/
H A DossimAigStatistics.cpp17 theMean(0.0), in ossimAigStatistics()
26 theMean = 0.0; in reset()
45 tempDouble = theMean; in writeStream()
57 out.write((char*)(&theMean), 8); in writeStream()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/walkers/vqsr/
H A DVariantDataManager.java76 final double theMean, theSTD; in normalizeData() local
78 theMean = mean(iii, true); in normalizeData()
79 theSTD = standardDeviation(theMean, iii, true); in normalizeData()
80 if (Double.isNaN(theMean)) { in normalizeData()
85 meanVector[iii] = theMean; in normalizeData()
89 theMean = meanVector[iii]; in normalizeData()
92 …ionKeys.get(iii) + String.format(": \t mean = %.2f\t standard deviation = %.2f", theMean, theSTD)); in normalizeData()
95 … 0.1 * Utils.getRandomGenerator().nextGaussian() : ( datum.annotations[iii] - theMean ) / theSTD ); in normalizeData()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/
H A DWordMean.java152 double theMean = (((double) length) / ((double) count)); in readAndCalcMean() local
153 System.out.println("The mean is: " + theMean); in readAndCalcMean()
154 return theMean; in readAndCalcMean()
/dports/science/colt/colt/src/cern/jet/random/
H A DPoissonSlow.java85 private int nextInt(double theMean) { in nextInt() argument
89 double xm = theMean; in nextInt()
H A DPoisson.java107 public int nextInt(double theMean) { in nextInt() argument
125 double my = theMean; in nextInt()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/include/ossim/support_data/
H A DossimAigStatistics.h25 double theMean;
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/include/ossim/imaging/
H A DossimImageStatisticsSource.h27 std::vector<ossim_float64> theMean; variable
/dports/math/R-cran-RHmm/RHmm/src/
H A DcMixtMultivariateNormal.cpp13 static void MixtMultivariateNormalDensity(cDVector& theY, uint theNMixt, cDVector* theMean, cDMatri… in MixtMultivariateNormalDensity() argument
15 uint myT = theY.mSize / theMean[0].mSize ; in MixtMultivariateNormalDensity()
21 { MultivariateNormalDensity(theY, theMean[j], theInvCov[j], theDet[j], myDens) ; in MixtMultivariateNormalDensity()
H A DcMixtUnivariateNormal.cpp13 static void MixtUnivariateNormalDensity(cDVector& theY, uint theNMixt, cDVector& theMean, cDVector&… in MixtUnivariateNormalDensity() argument
23 double myCR = (theY[t] - theMean[i])/mySigma[i] ; in MixtUnivariateNormalDensity()