Scilab Function
Last update : 21/8/2006
shc_fits - write a Shack-Hartmann centroids to a FITS file.
Calling Sequence
-
[SHartmannCentroids_out]=shc_fits(SHartmannCentroids_in,filename)
Parameters
-
SHartmannCentroids_in
: the input Shack Hartmann centroids.
-
filename
: the name of the output file.
-
SHartmannCentroids_out
: the output Shack Hartmann centroids.it is the same as SHartmannCentroids_in
Description
write Shack-Hartmann centroids to a FITS file.
Examples
pitch=0.000252;
a=begin(0.004,1e-6,200);
b=circ_ap(a,8*pitch);
l=lnslt_array(16,16,0.012246,0.000252,32,32);
c=lnslt_arr_transform(b,l);
d=create_shcentroids(c,l);
shc_fits(d,"SHCentroids");
Author
Chen jingyuan, Gan guangyong (IAPCM, Beijing,China.)
See Also
create_shcentroids
,
lnslt_array
,
lnslt_arr_transform
,