dongdongme 发表于 2009-9-6 21:14

符号变量syms的问题

定义符号变量x:
syms x
然后 cosh(x) 可以算
为什么 cosh(3*x) 就出错了呢,
提示的错误是这样的:
??? Error using ==> reshape
To RESHAPE the number of elements must not change.

Error in ==> sym.maple at 94
      result = reshape(result,size(varargin{3}));

Error in ==> sym.cosh at 7
Y = maple('map','cosh',X);

请明白的朋友帮忙看看吧,指导一下~~

ChaChing 发表于 2009-9-7 20:21

不清楚LZ的问题
syms x
z=cosh(x)
z=cosh(3*x)
没报错?
页: [1]
查看完整版本: 符号变量syms的问题