function complexValue = ang( thetaDeg )
   % function complexValue = ang( thetaDeg )
   %   returns complexValue associated with 
   %      e^(i*thetaDeg)
  
   complexValue = cosd(thetaDeg) + j * sind(thetaDeg);
