📄 abs2.pro
字号:
; $Id: abs2.pro,v 1.1.1.1 2002/03/12 11:53:46 riccardi Exp $
;
; A. Riccardi, Dipartimento di Astronomia di Firenze (Italy).
; Please, send me a message if you modify this code.
function abs2, x
;+
; NAME:
; ABS2
;
; PURPOSE:
; ABS2 calculates the squared modulus of a comlex number.
;
; CATEGORY:
; Algebra.
;
; CALLING SEQUENCE:
;
; Result = ABS2(X)
;
; INPUTS:
; X: a complex value.
;
; OUTPUTS:
; ABS2 returns FLOAT(X)^2+IMAGINARY(X)^2.
;
; MODIFICATION HISTORY:
; Written by: A. Riccardi; April, 1995
;-
return, float(x)^2+imaginary(x)^2
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -