Convert inline to symbolic

Convert an inline function into symbolic so you can use symbolic operators like diff() or jacobian()
736 descargas
Actualizado 26 sep 2011

Ver licencia

This program converts an inline expression into a symbolic expression, so you can use it on many Matlab operators that inline expression dosen't
work.

Usage:
Inputs:
fi=an inline function made with different names for each variable

Output:
f0=the same function fi, but converted into a symbolic function

Example:
Create an inline object that can't be simbolic differenciated
fi=inline('x^2+3*y-z^4','x','y','z')
f0=inline2sym(fi)
Now the expresion can be differenciated
syms x;diff(f0,x)

Citar como

Héctor Corte (2024). Convert inline to symbolic (https://www.mathworks.com/matlabcentral/fileexchange/33025-convert-inline-to-symbolic), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2010a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y MATLAB Answers.
Agradecimientos

Inspiración para: mmDerivative(t,y)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0