Home
last modified time | relevance | path

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

/dports/biology/mrbayes/MrBayes-3.2.7/src/
H A Dutils.c1433 MrBFlt gammaStat[2000]; in EstimatedSampleSize() local
1450 gammaStat[lag]=0; in EstimatedSampleSize()
1455 gammaStat[lag] += (del1 * del2); in EstimatedSampleSize()
1458 gammaStat[lag] /= ((MrBFlt) (samples - lag)); in EstimatedSampleSize()
1462 varStat = gammaStat[0]; in EstimatedSampleSize()
1466 if (gammaStat[lag - 1] + gammaStat[lag] > 0) in EstimatedSampleSize()
1468 varStat += 2.0 * (gammaStat[lag - 1] + gammaStat[lag]); in EstimatedSampleSize()
1474 returnESS[i] = (gammaStat[0] * samples) / varStat; in EstimatedSampleSize()