Download this file
1 2 3 4 5 6 7 8 9 10 11 12
function atanh, x n=n_elements(x) y=fltarr(n) result=call_external("/home/pmills/idl_lib/archyp.so", "atanh_glue", x, y, n) if result ne 0 then return, null return, y end