Displaying 1 result from an estimated 1 matches for "sigma_p".
Did you mean:
sigma_j
2013 Apr 12
1
A strange behaviour in the graphical function "curve"
...elf doesn't do. See what I'm
talking about:
# A function that returns a 2-element vector, given a
# single argument
zetas <- function(alpha) {z <- qnorm(alpha/2); c(z,-z)}
# A transformation function - it can take a vector as
# its z argument
Tzx <- function(z, sigma_p, mu_p) sigma_p*z + mu_p
# Another transformation function similar to the
# previous one - it can take a vector as its x argument
Txz <- function(x, sigma_p, mu_p) (x - mu_p)/sigma_p
# The general function with several arguments
BetaG <- function(mu, alpha, n, sigma, mu_0) {...