📄 asinh.pro
字号:
function asinh, x;+; NAME:; ASINH; PURPOSE:; Return the inverse hyperbolic sine of the argument; EXPLANATION:; The inverse hyperbolic sine is used for the calculation of asinh ; magnitudes, see Lupton et al. (1999, AJ, 118, 1406);; CALLING SEQUENCE; result = asinh( x) ; INPUTS:; X - hyperbolic sine, numeric scalar or vector or multidimensional array ; (not complex) ;; OUTPUT:; result - inverse hyperbolic sine, same number of elements as X; double precision if X is double, otherwise floating pt.;; METHOD:; Expression given in Numerical Recipes, Press et al. (1992), eq. 5.6.7 ; Note that asinh(-x) = -asinh(x) and that asinh(0) = 0. and that; if y = asinh(x) then x = sinh(y). ;; REVISION HISTORY:; Written W. Landsman February, 2001; Work for multi-dimensional arrays W. Landsman August 2002; Simplify coding, and work for scalars again W. Landsman October 2003;- On_error,2 y = alog( abs(x) + sqrt( x^2 + 1.0) ) index = where(x LT 0 ,count) if count GT 0 then y[index] = -y[index] return, y end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -