使用matlab计算导数和积分

时间:2011-05-03 06:46:57

标签: matlab integration derivative

我试图找到函数的二阶导数,但在初始化我的符号时,我收到以下错误:

Error using ==> subsindex
Function 'subsindex' is not defined for values of class 'sym'.

我使用的命令是:

syms x a b c L;
u = (a*x(x-L))+(b*x((x^2)-(L^2)))+(c*x((x^3)-(L^3)));

u”是我的职能。

1 个答案:

答案 0 :(得分:2)

我对MATLAB的符号功能了解不多,但这个错误来自

之类的部分
x(x-L)

MATLAB将其解释为索引操作。你的意思是乘法吗?即。

x*(x-L)