


ANGLED: Returns the phase angles in degrees of a matrix with complex elements
Usage: deg=angled(h)
h = complex matrix
deg = angle in math convention (degrees counterclockwise from "east")

0001 function pd=angled(h) 0002 %ANGLED: Returns the phase angles in degrees of a matrix with complex elements 0003 % Usage: deg=angled(h) 0004 % h = complex matrix 0005 % deg = angle in math convention (degrees counterclockwise from "east") 0006 pd=angle(h)*180/pi;