|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
在使用matlab做符合微分和积分时遇到如下问题:
f='sin(x)/2';
>> dfdx=diff(f),求此微分时出现以下的答案:
??? Error using ==> maple
at offset 7, `]` unexpected
Error in ==> E:\安装软件\matlab\toolbox\symbolic\@sym\findsym.m
On line 53 ==> v = maple(['sort(',v,',lexorder)']);
Error in ==> E:\安装软件\matlab\toolbox\symbolic\@sym\diff.m
On line 40 ==> x = findsym(S,1);
Error in ==> E:\安装软件\matlab\toolbox\symbolic\@char\diff.m
On line 9 ==> y = diff(sym(f),varargin{:});
syms x;
>> f='1/(1+x^2)';
>> s=int(f),求此积分时出现如下答案:
??? Error using ==> maple
at offset 7, `]` unexpected
Error in ==> E:\安装软件\matlab\toolbox\symbolic\@sym\findsym.m
On line 53 ==> v = maple(['sort(',v,',lexorder)']);
Error in ==> E:\安装软件\matlab\toolbox\symbolic\@sym\int.m
On line 34 ==> x = findsym(f,1);
Error in ==> E:\安装软件\matlab\toolbox\symbolic\@char\int.m
On line 9 ==> y = int(sym(f),varargin{:});
该如何解决以上问题?另外我安装过好几个matlab,运行后都出出现以上的问题,同时我的系统是WINDOW 2000的。
|
|