[go: up one dir, main page]

Menu

[r377]: / idl_lib / atanh.pro  Maximize  Restore  History

Download this file

14 lines (7 with data), 187 Bytes

 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