boax.core.models.means.constant# boax.core.models.means.constant(c)# The constant mean function. Computes y = f(x) = c. Example >>> mean = constant(1.96) >>> ys = mean(xs) Parameters: c (Union[Array, ndarray, bool, number, float, int]) – The constant value. Return type: Mean Returns: A constant mean function.