1011014404 发表于 2011-12-20 18:32

急!!!求教高手

本帖最后由 1011014404 于 2011-12-20 18:33 编辑

% 定义函数
t=linspace(0,22*pi,1100);
r=exp(cos(t))-2*cos(4*t)+sin(t./12)).^5;
subplot(2,1,1)
p=polar(t,r);         % 在极坐标中绘图
subplot(2,1,2)
=pol2cart(t,r);    % 找到笛卡儿坐标
plot(x,y)               % 在x-y平面上绘图
??? r=exp(cos(t))-2*cos(4*t)+sin(t./12)).^5;
                                       |
Error: Missing operator, comma, or semicolon.

ChaChing 发表于 2011-12-20 21:46

回复 1 # 1011014404 的帖子

怎LZ给的报错讯息与我试的不同!?
>> r=exp(cos(t))-2*cos(4*t)+sin(t./12)).^5;
??? r=exp(cos(t))-2*cos(4*t)+sin(t./12)).^5;
                                       |
Error: Unbalanced or unexpected parenthesis or bracket.

只是多个")"r=exp(cos(t))-2*cos(4*t)+sin(t./12).^5;还有标题有些不清楚!
页: [1]
查看完整版本: 急!!!求教高手