The following minimal working example fails for me very cryptically: ``` using Interpolations xs = 1:10 itp = Interpolations.scale(Interpolations.interpolate(zeros(10),BSpline(Cubic(Periodic())), OnGrid()),xs) extp = Interpolations.extrapolate(itp,Periodic()) gradient(extp,2.,2.) ``` I get an error beginning with ``` ERROR: LoadError: UndefVarError: d not defined ``` Do extrapolation objects support computing gradients?