I am working on a problem where I need to create a vector $ \mathbf{V} $ of dimension $ n + 1 $ such that $ \mathbf{V}[0] = 0 $ and $ \mathbf{V}[n] = 1 $. The vector should grow smoothly from $0$ to $1$. My idea is to find the "smoothest" function $ f(x) $ that grows from 0 to 1 over the interval $ [0, 1] $, and then sample this function $ n $ times to populate the vector.
What are some mathematical criteria for a function to be considered "smooth" in this context?
What functions $ f(x) $ satisfy these criteria and grow from 0 to 1 over the interval $ [0, 1] $?
The function has to be continuous, differentiable and monotonic on the interval [0,1]. The "smoothest" function I could think of is a logistic function in the form $f(x) = \frac{1}{1 + e^{-kx}}$