Is sometimes useful to have a regular function close to the characteristic function of an interval.
More precisely, we want a
for every .
An example of such a function is the following one:
Bellow is a python
implementation of this function
import numpy as np
def cutoff(x, a, b, d):
y = 1.0 * (x >= a + d) * (x <= b - d)
i = np.argwhere((x > a) * (x < a + d))
y[i] = y[i] + 0.5 + 0.5*np.tanh(np.tan(-np.pi/2 + (x[i] - a)/d*np.pi))
i = np.argwhere((x > b-d)*(x < b))
y[i] = y[i] + 0.5 + 0.5*np.tanh(np.tan(np.pi/2 - (x[i] - b + d)/d*np.pi))
return y
and its graphic representation for

Figure 1: Graphic representation of