Home > matutils > mosaic > decgrid.m

decgrid

PURPOSE ^

function decgrid(deltadec)

SYNOPSIS ^

function decgrid(deltadec)

DESCRIPTION ^

 function decgrid(deltadec)

 Draw grid lines at constant declination, separated by deltadec in
 radians

 (EML)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function decgrid(deltadec)
0002 
0003 % function decgrid(deltadec)
0004 %
0005 % Draw grid lines at constant declination, separated by deltadec in
0006 % radians
0007 %
0008 % (EML)
0009 
0010 hold on
0011 
0012 decs = -pi/2:deltadec:pi/2;
0013 for idec=1:size(decs,2)
0014   decring(decs(idec),'g');
0015 end
0016 
0017 return
0018 
0019

Generated on Sun 14-Jun-2015 17:12:45 by m2html © 2005