function  magPhs( complexValue )
   % function magPhs( complexValue )
   %  prints magnitude and phase in degrees of a complex value 
   %      
     
   fprintf('%1.3f < %1.2f\n',[abs(complexValue),angle(complexValue)*180/pi]');