LTPDA_UNWRAPDEG Unwrap a phase vector given in degrees. function deg = ltpda_unwrapdeg(phase) M Hewitson 26-01-07 $Id: ltpda_unwrapdeg.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $
0001 function deg = ltpda_unwrapdeg(phase) 0002 0003 % LTPDA_UNWRAPDEG Unwrap a phase vector given in degrees. 0004 % 0005 % function deg = ltpda_unwrapdeg(phase) 0006 % 0007 % M Hewitson 26-01-07 0008 % 0009 % $Id: ltpda_unwrapdeg.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $ 0010 % 0011 0012 0013 deg = unwrap(phase*pi/180)*180/pi; 0014 0015 % END