% ANGLE ANGLE Phase Angle Function % % Usage % % Compute the phase angle in radians of a complex matrix. The general % syntax for its use is % % p = angle(c) % % where c is an n-dimensional array of numerical type. function p = angle(c) p = atan2(imag(c), real(c));