What are common functions that take two input variables and make the output between 0 and 1?
Question is as simple as that, two inputs and one output, output needs to stay between 0 and 1!
What are common functions that take two input variables and make the output between 0 and 1?
Question is as simple as that, two inputs and one output, output needs to stay between 0 and 1!
This question is way way way way way way too broad. There are infinitelly many such functions.
Examples:
There are many more. Without further details, it's hard to give a more accurate answer.
For any lower and upper bounded function $f$, say:
$$m \le f(x,y) \le M$$
then the "normalized" function $g$:
$$g(x,y) = \frac{f(x,y)-m}{M-m}$$
will do the job. So any common bounded function can be scaled very simply to satisfy the condition. If you don't fear saturation, then:
$$g(x,y) = \min\left( \max\left(f(x,y),0\right),1\right)$$
does it as well. A useful class of such functions can be found among sigmoid functions (some take values in $[-1,1]$ but this can be fixed easily), like the logistic curve:
You also have a handful of cumulative distribution functions from probability distributions.