blob: 2fc61210e2c07873590620a51936df7db4cf9048 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# MKCIRCLE -- Fraction of Gaussian profile going through a circular aperture
# of specified diameter in units of the profile FWHM.
real d, logd
printf ("## CIRCLE -- Fraction of Gaussian profile going through a")
printf (" cicular\n## aperture as a function of the diameter in units")
printf (" of FWHM.\n\n")
printf ("%4.2f %5.3f\n", 0, 0)
for (logd=-1; logd<=0.6; logd=logd+0.1) {
d = 10.**logd
z = d * 0.8325546111577
z = 1 - exp (-(z * z))
printf ("%4.2f %5.3f\n", d, z)
}
|