r=1:8;theta=1:9;
w=r*exp(i*theta);comp=z*w;
这段程序怎么错了啊,谢谢
r=1:8;theta=1:8; z=1:8;
w=r.*exp(i*theta);comp=z.*w
注意:矩阵相乘和矩阵元素对应相乘的区别...