asinh.pro

来自「basic median filter simulation」· PRO 代码 · 共 41 行

PRO
41
字号
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 + =
减小字号Ctrl + -
显示快捷键?