How do I generate the Taylor series as a function of several variables in MATLAB R2011b?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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.
Respuesta aceptada
MathWorks Support Team
el 13 de Sept. de 2012
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Expansion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!