1 | erho.bt(p, c1, M)
|
p |
|
c1 |
|
M |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (p, c1, M)
return(chi.int(p, 2, M)/2 + (M^2/2 + c1 * (5 * c1 + 16 * M)/30) *
chi.int2(p, 0, M + c1) + (M^2/2 - M^2 * (M^4 - 5 * M^2 *
c1^2 + 15 * c1^4)/(30 * c1^4)) * (chi.int(p, 0, M + c1) -
chi.int(p, 0, M)) + (1/2 + M^4/(2 * c1^4) - M^2/c1^2) * (chi.int(p,
2, M + c1) - chi.int(p, 2, M)) + (4 * M/(3 * c1^2) - 4 *
M^3/(3 * c1^4)) * (chi.int(p, 3, M + c1) - chi.int(p, 3,
M)) + (3 * M^2/(2 * c1^4) - 1/(2 * c1^2)) * (chi.int(p, 4,
M + c1) - chi.int(p, 4, M)) - (4 * M/(5 * c1^4)) * (chi.int(p,
5, M + c1) - chi.int(p, 5, M)) + (1/(6 * c1^4)) * (chi.int(p,
6, M + c1) - chi.int(p, 6, M)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.