如何在MATLAB上解决以下问题



a(x)这里是信号中使用的一类方程

Let
y(x) = x^3 + x^2 + x + 1
a(x) is inputed by the user so for example if user inputs
a(x) = D2 + D + 6
y(x)*a(x) = D2(x^3 + x^2 + x + 1) + D(x^3 + x^2 + x + 1) + 6(x^3 + x^2 + x + 1)
here D2(x^3 + x^2 + x + 1) = 6x + 2 and D(x^3 + x^2 + x + 1) = 3x^2 + 2x + 1
So D is differentiation and D2 is double differential

所以我想知道如何在MATLAB上做这样的事情

使用Matlab符号计算工具箱https://www.mathworks.com/products/symbolic.html

Calculus
Evaluate exact analytical solutions for definite or indefinite integral, 
calculate derivatives of symbolic expressions or functions, 
and approximate functions using series expansions.

最新更新