Ibeta {spsh} | R Documentation |
Calculation of the incomplete beta function used insncFun.01110
Ibeta(z, a, b)
z |
Vector of |
a |
Vector of |
b |
Vector of |
If a=1
or a=1/n
and b=0
, this implementation cannot evaluate values for z < 1.014
.
Returns a vector of numerical values
Tobias KD Weber , tobias.weber@uni-hohenheim.de
x = seq(.5, 4.2 , length = 20)
alf = 0.1
n = 2
y = 1 + (alf * 10^x)^n
result <- Ibeta(z = y, a = 1, b = 0 )