matlab 符号函数 急~~~>> syms x ff=1./(sqrtm(2*pi)*0.01).*exp(-(x-0.03).^2/2*0.01^2);? Error using ==> sym.minus at 41Error using ==> maplemexError, (in MTM:-Zip) `ArrayTools` does not evaluate to a module我装了一个maple16 关联了matlab

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/29 11:04:18

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的内核,为什么老是这样报错呢.只要函数中有负号就会报错

对于符号表达式,定义了符号变量,符号表达式中的乘和除都不用点乘和点除.正确的是
syms x f
f=1/(sqrtm(2*pi)*0.01)*(-(x-0.03)^2/2*0.01^2);