下面的matlab程序画图出现什么问题?R=35*(1-erf(17/(2*sqrt(0.04*t))));%由公式计算出的扩张半径t=0:0.1:0.5*pi;p=0:0.1:2*pi;[theta,phi]=meshgrid(t,p);x=R*sin(theta).*cos(phi);y=R*sin(theta).*sin(phi);z=R*cos(theta);hold onsurfc(x,y,

来源:学生作业帮助网 编辑:作业帮 时间:2024/08/31 04:28:22
下面的matlab程序画图出现什么问题?R=35*(1-erf(17/(2*sqrt(0.04*t))));%由公式计算出的扩张半径t=0:0.1:0.5*pi;p=0:0.1:2*pi;[theta,phi]=meshgrid(t,p);x=R*sin(theta).*cos(phi);y=R*sin(theta).*sin(phi);z=R*cos(theta);hold onsurfc(x,y,
xSmkP+ePHKLn^nҮ`_ǐ%6YOC:'*Um7Ln в $ss܇ozUpuk5VcwPk Ύ.*LSdRR|[+`SѓKG_gܭa+{늯yp ӮsG)'Kev-{Y)RuʧTnCYL{v" )&9rc@qYΪpzԨ zΫ%v듑!3rT&[Bt9sF6ƫrva%"SGk(Kx%M|ߝgYXk91*uFs lٲu䰏p_ zJQ%YĬfx@I8 l ,P!T.k"0LQLS NΠ An$ŘIc-o-Y *B@V5 Q@Y (gź ~nq$Aˠɏ"_wu<'s/%;WTjrh29:%C∱{jpE40e nrLsI6rAL_Q;z.*@R+

下面的matlab程序画图出现什么问题?R=35*(1-erf(17/(2*sqrt(0.04*t))));%由公式计算出的扩张半径t=0:0.1:0.5*pi;p=0:0.1:2*pi;[theta,phi]=meshgrid(t,p);x=R*sin(theta).*cos(phi);y=R*sin(theta).*sin(phi);z=R*cos(theta);hold onsurfc(x,y,
下面的matlab程序画图出现什么问题?
R=35*(1-erf(17/(2*sqrt(0.04*t))));%由公式计算出的扩张半径
t=0:0.1:0.5*pi;
p=0:0.1:2*pi;
[theta,phi]=meshgrid(t,p);
x=R*sin(theta).*cos(phi);
y=R*sin(theta).*sin(phi);
z=R*cos(theta);
hold on
surfc(x,y,z)

下面的matlab程序画图出现什么问题?R=35*(1-erf(17/(2*sqrt(0.04*t))));%由公式计算出的扩张半径t=0:0.1:0.5*pi;p=0:0.1:2*pi;[theta,phi]=meshgrid(t,p);x=R*sin(theta).*cos(phi);y=R*sin(theta).*sin(phi);z=R*cos(theta);hold onsurfc(x,y,
R=35*(1-erf(17/(2*sqrt(0.04*t))));%你的这个t的值是多少,如果以下面的t代入,误差函数的值为0
%%
R=1; %这个是我临时取的
t=0:0.1:0.5*pi;
p=[0:0.1:2*pi,2*pi]; %补上这个缺口
[theta,phi]=meshgrid(t,p);
x=R.*sin(theta).*cos(phi);
y=R.*sin(theta).*sin(phi);
z=R.*cos(theta);
hold on
surfc(x,y,z)