Hi! I want to use the function interpolation suite from the GSL library. I came across the GSL.jl package which wraps the entire GSL library (which is awesome).
I am stuck with setting up the interpolation object and wanted to reach out for help. my issue is described here in greater detail: https://github.com/jiahao/GSL.jl/issues/19 basically I don't know what to put in place of *T::Ptr{gsl_interp_type} in* *spline_alloc(T::Ptr{gsl_interp_type},size::Integer)* which is the function used to allocate a spline object. If I just do pS = interp_alloc(interp_linear,n) or pS = interp_alloc(interp_cspline,n) it rightly says "interp_linear" not defined. How can I get a pointer to a GSL interpolation type? I cannot find any function that returns such a pointer. thanks!
