% 随便生成一个复数矩阵3x2A = rand(3,2) + rand(3,2)*i;% 求出实部reA = real(A);% 求出虚部imA = imag(A);% 求绝对值absA = abs(A);% 求相角angA = angle(A);