A regular approximation of characteristic functions

Is sometimes useful to have a regular function close to the characteristic function of an interval.

More precisely, we want a C function χa,b,δ:RR verifying:

  • supp(χa,b,δ)=(a,b)
  • χa,b,δ(x)=1 for every x[a+δ,bδ].

An example of such a function is the following one:

χa,b,δ(x)={0if x(a,b)1if x[a+δ,bδ]12+12tanh(tan(π2+xaδπ))if x(a,a+δ)12+12tanh(tan(π2xb+δδπ))if x(bδ,b)

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 a=0.2, b=0.8 and δ=0.2.

Figure 1: Graphic representation of \(\chi_{0.2, 0.8, 0.2}\)

Figure 1: Graphic representation of χ0.2,0.8,0.2