zto1: Constructing a decreasing function from (0,1) to (0,1)
Description
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.
Usage
zto1(o, a, m)
Value
A function whose parameters o, a and m have been fixed.
Arguments
o, a, m
the output function's parameters, as described above.