⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zern_ft.pro

📁 IDL语言编写的用于天文自适应光学仿真的软件CAOS V6.0的第一部分。
💻 PRO
字号:
; $Id: zern_ft.pro,v 1.1.1.1 2002/03/12 11:53:46 riccardi Exp $
;
; A. Riccardi, Dipartimento di Astronomia di Firenze (Italy).
; e-mail address: riccardi@arcetri.astro.it
; Please, send me a message if you modify this code.


function zern_ft, j, fx, fy
;+
; NAME:
;       ZERN_FT
;
; PURPOSE:
;       ZERN_FT returns the value of j-th Zernike polynomial
;       fourier transform in a point of frequency fx,fy.
;       (We use Noll formulation of Zernike polynomials)
;
; CATEGORY:
;       Special polynomial
;
; CALLING SEQUENCE:
;
;       Result = ZERN_FT(J, Fx, Fy)
;
; INPUTS:
;       J:      index of the polynomial, integer J >= 1
;       Fx:     frequency to evaluate
;       Fy:
;
; OUTPUTS:
;       ZERN_FT returns the value of j-th Zernike polynomial
;       fourier transform in the point of requency Fx,Fy.
;       On error return 0.
;
; EXAMPLE:
;       Evaluate Zernike x coma fourier transform in fx,fy. Enter:
;
;           Result = ZERN_FT(8, fx, fy)
;
; MODIFICATION HISTORY:
;       Written by:     A. Riccardi; March, 1995.
;-
	k = sqrt(fx*fx+fy*fy)
	phi = atan(fy,fx)

	return, zern_ft_polar(j, k, phi)
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -