Displaying 1 result from an estimated 1 matches for "hilim".
Did you mean:
halim
2002 Mar 22
0
sequential t-test - replies
...# delta is the difference-to-detect ( in std devs )
# alpha, beta are the reqd type1 & 2 errors
# minn:maxn is the range of sample-numbers
# bot:top is the range used in solving for critical values
#
#
Hh <- function(N = 5, X = 0, lolim = 0, hilim = Inf)
{
# an integral required in the likelehood ratio
#
integrand <- function(y, n, x)
{
ans <- ((y^n) * exp(-0.5 * (x + y)^2))/gamma(n +
1)
ans
}...