How do I generate the Taylor series as a function of several variables in MATLAB R2011b?
6 次查看(过去 30 天)
显示 更早的评论
I have a symbolic function with several independent variables:
y = f(x,w,z)
I would like to know if there is a way to to generate the Taylor series of this function.
采纳的回答
MathWorks Support Team
2012-9-13
This enhancement has been incorporated in Release 2012a (R2012a). For previous product releases, read below for any possible workarounds:
The ability to generate a symbolic expression for the Taylor Series of a function of several variables is not available from the MATLAB command line. The following example computes the first terms of the taylor series of f with respect to the variable x around the point x0.
taylor(f, x = x0)
As a workaround, the Multivariate Taylor Series may be generated within the MUPAD Notebook interface if you have the Symbolic Math Toolbox (check the output of VER).
The following example may be executed within the MUPAD Notebook for the function f:
mtaylor(f, [x = x0, y = y0, ...])
This computes the first terms of the Multivariate Taylor Series of f with respect to the variables x, y etc. around the points x = x0, y = y0 etc.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Expansion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!