This function returns a non-increasing function from (0, 1) to (0, 1).
It takes inputs o, a and m, and it returns the function
f(p)={z=max(0, p-o); return(max((1-z)^a, m))}
. The function f(p) can be used,
for instance, for transforming p-values before plotting them.
zto1(o, a, m)
o, a, m | the output function's parameters, as described above. |
---|
A function whose parameters o, a and m have been fixed.