Displaying 2 results from an estimated 2 matches for "negmul".
Did you mean:
neg_mul
2001 Feb 01
1
minor psy.c modifications
...}
while(median<LASTBIN && threshi<(countbelow-radix[median])){
countbelow =countbelow-radix[median];
countabove + =radix[median];
median++;
}
}
noise[i]=BINdB(median)+off[i];
}
}
3/b: integer based (old) style:
#define BNM_RES 4
#define BIN(x) ((int)((x)*negMul))
#define BINdB(x) ((float)(x)*negDiv)
#define BINCOUNT (200*BNM_RES)
#define LASTBIN (BINCOUNT-1)
static void bark_noise_median(long n,float *b,
float *f,float *noise,
float lowidth,float hiwidth,...
2003 Jan 22
1
negative multinomial regression models
...inomial Regression Models For Clustered
Event Counts." Sociological Methodology 26: 113-132., abstract at
http://depts.washington.edu/socmeth2/4abst96.htm) implemented in R. A
FORTRAN version of the method described in the Guo paper is available at
http://www.stat.unipg.it/stat/statlib/general/negmul.
I''ve been approaching this problem by modifying the loglik glm.nb function
as such:
## original loglik function in glm.nb
## loglik <- function(n, th, mu, y) {
## sum(lgamma(th + y) - lgamma(th) - lgamma(y + 1) + th *
## log(th) + y * log(mu + (y == 0)) - (th +...