符号函数作图问题。
이전 댓글 표시
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就报错了,这是为什么,怎么改呢?求指导啊
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 图形对象的标识에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!