Plot a representation of the sphere, with RA and DEC lines at pi/8 intervals (EML)
0001 % Plot a representation of the sphere, with RA and DEC lines at pi/8 0002 % intervals 0003 % 0004 % (EML) 0005 0006 hold off 0007 sphere 0008 hold on 0009 0010 decgrid(pi/8); 0011 decring(0, 'r'); 0012 ragrid(pi/8); 0013 raring(0, 'r'); 0014 raring(pi/2, 'r'); 0015