MATLAB--对一组复数数据画图

例:

Xcoa  Xcib 为一组复数

MATLAB--对一组复数数据画图_第1张图片

MATLAB--对一组复数数据画图_第2张图片 

对两组数据画图:

 

figure
theta=angle(Xcib);
rho=abs(Xcib);
polarplot(theta,rho,'o');
hold on
figure
theta1=angle(Xc0a);
rho1=abs(Xc0a);
polarplot(theta1,rho1,'k')

MATLAB--对一组复数数据画图_第3张图片

 

MATLAB--对一组复数数据画图_第4张图片 

你可能感兴趣的:(MATLAB)