Is there a parametrized family of diverse continuous functions whose input and output are reals in [0.0, 1.0]?
The closest I can think of is the Beta distribution:
1) CDF works, but all the functions are monotonically increasing, so not super interesting. I can add a "flip" parameter to also get the monotonically decreasing versions.
2) PDF output is not [0.0, 1.0], but I could divide by max. Again would need to add a "flip" parameter to get the horizontally flipped versions.
I could add another flag to pick between these two.
Thanks!
Another way to think about my question is in terms of kernels (like in image processing). Different kernels highlight different features. I'm doing something similar here, although not for image processing, and in 1D space. – Alexei Andreev May 05 '20 at 17:47