将符号运算怎么转化为数值运算,可以用eval()函数。
>> syms t x
>> y=int(sin(t)/t,0,x);
>> x=0:pi/100:2*pi;
>> plot(x,eval(y))
运行结果