from activfuncs import plot, x
import numpy as np

def arctan(x):
    return np.arctan(x)

plot(arctan)
