search for: sigma_m

Displaying 1 result from an estimated 1 matches for "sigma_m".

Did you mean: sigma_j
2013 Apr 12
1
A strange behaviour in the graphical function "curve"
...ion 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) { lasZ <- zetas(alpha) # It is a vector sigma_M <- sigma/sqrt(n) lasX <- Tzx(lasZ, sigma_M, mu_0) # Another vector(transf. from lasZ) NewZ <- Txz(lasX, sigma_M, mu) # A new vector:transf. from lasX # And the result is a single value: pnorm(NewZ[2]) - pnorm(NewZ[1]) } # Now, let's have a function of a singl...