作业帮 > 综合 > 作业

matlab 符号函数 急~~~

来源:学生作业帮 编辑:灵鹊做题网作业帮 分类:综合作业 时间:2024/04/29 20:19:57
matlab 符号函数 急~~~
>> syms x f
f=1./(sqrtm(2*pi)*0.01).*exp(-(x-0.03).^2/2*0.01^2);
? Error using ==> sym.minus at 41
Error using ==> maplemex
Error, (in MTM:-Zip) `ArrayTools` does not evaluate to a module
我装了一个maple16 关联了matlab 的maple的内核,为什么老是这样报错呢.只要函数中有负号就会报错
matlab 符号函数 急~~~
对于符号表达式,定义了符号变量,符号表达式中的乘和除都不用点乘和点除.正确的是
syms x f
f=1/(sqrtm(2*pi)*0.01)*(-(x-0.03)^2/2*0.01^2);
再问: 不行啊,还是会报同样的错 而且你把我的exp去掉了。。。。。。
再答: 我运行时不报错呀。