matlab入门基础问题t=0:0.01:1;f=sin(t);syms t;y=int(f,t);plot(t,y);结果显示:Conversion to double from sym is not possible.我是想对原公式求积分,再对求得的新公式进行作用!

来源:学生作业帮助网 编辑:作业帮 时间:2024/10/06 09:32:46
matlab入门基础问题t=0:0.01:1;f=sin(t);syms t;y=int(f,t);plot(t,y);结果显示:Conversion to double from sym is not possible.我是想对原公式求积分,再对求得的新公式进行作用!
xݑN@_eܕ0. BҤtf4+o Q0,Ÿ0R./?Ӯ|(j\ݜs3ߜ̥JCTNPj4ŴElBC:qrQIUplSNHlڄ_c䉁-D1i3yCb20E6&ANYe>I w0*=~BBXBäbO~h6nJ%G~dTRRT nNWyp8f^9ovٞPqGL/μ?/Ʒ?w^Q45.SVrIq

matlab入门基础问题t=0:0.01:1;f=sin(t);syms t;y=int(f,t);plot(t,y);结果显示:Conversion to double from sym is not possible.我是想对原公式求积分,再对求得的新公式进行作用!
matlab入门基础问题
t=0:0.01:1;
f=sin(t);
syms t;
y=int(f,t);
plot(t,y);
结果显示:Conversion to double from sym is not possible.
我是想对原公式求积分,再对求得的新公式进行作用!

matlab入门基础问题t=0:0.01:1;f=sin(t);syms t;y=int(f,t);plot(t,y);结果显示:Conversion to double from sym is not possible.我是想对原公式求积分,再对求得的新公式进行作用!
函数画图要用ezplot
你的问题可以这样写:
syms t;
f=sin(t);
y=int(f,t);
ezplot(y,[0,1]);