Afficher commentaires plus anciens
syms x
A=[cos(275*pi/x),0.725*i*sin(275*pi/x);i*1.38*sin(275*pi/x),cos(275*pi/x)];
B=[cos(275*pi/x),0.408*i*sin(275*pi/x);i*2.45*sin(275*pi/x),cos(275*pi/x)];
S=[1;1.5];
T=B*A*B*A*B*A*B*S;
B=T(1,:);
C=T(2,:);
Y=C./B;
R=[(1-Y)/(1+Y)]*[(1-Y)/(1+Y)]';
ezplot(R,[400,700])
可以画出图像
可是当我把T改为T=B*A*B*A*B*A*B*A*B*S;就是只添加了两个矩阵,matlab就报错了,这是为什么,怎么改呢?求指导啊
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur 图形对象的标识 dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!