danyanpi 发表于 2008-11-24 21:41

Inner matrix dimensions must agree

syms x h
h=1/20;
c_3=0.0657;
c_2=0.0012;
c_1=0.0608;
c0=0.1119;
z=c_3*(h-x).^3+c_2*(h.^3+3*h.^2*(h-x)+3*h*(h-x).^2-3*(h-x).^3)+...
c_1*(h.^3+3*h.^2*x+3*h*x.^2-3*x.^3)+c0*x.^3;
z=z/(6*h.^3);
f=simplify(z);
u=x*(1-exp(x-1));
max(abs(u-f))
我想求出U和f的在上的最大误差,但是怎么老出错啊
??? Error using ==> mtimes
Inner matrix dimensions must agree.
Error in ==> Untitled4444 at 12
u=x*(1-exp(x-1));

[ 本帖最后由 sigma665 于 2008-11-25 09:24 编辑 ]

sogooda 发表于 2008-11-24 21:45

回复 楼主 danyanpi 的帖子

参见精华帖:常见错误总结。
还有就是下次发帖注意使用能反应帖子内容的标题。
页: [1]
查看完整版本: Inner matrix dimensions must agree