How to solve equations that use other equations?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am trying to solve an equation whose variables are equations. Because of the complexity of the setup, I cannot enter the final equation that I want to solve in fsolve and am having to use intermediate variables to represent smaller equations. I am attaching a small code which mimics what I am trying to do but on a smaller scale.
y = symfun(sin(x)+cos(x), x);
z = symfun(-sin(y)+cos(x), [x,y]);
m = symfun(y-z, x);
x = fzero(@(x) m(x), 1);
0 comentarios
Respuestas (1)
David
el 27 de Jul. de 2016
Hi Simrat,
Why not just forget about the symbolic toolbox. Declare your sub-equations and your final equation as normal anonymous functions instead of symbolic functions, which fzero can work with anyway. These have no problem appearing recursively:
y = @(x) sin(x)+cos(x)
z = @(x,y) -sin(y)+cos(x)
m = @(x) y(x)-z(x,y(x))
fzero(m,1)
Sometimes anonymous functions have trouble when you want to call them with array inputs. In this case you can wrap them using the function called arrayfun, or you could declare your subfunctions in their own m-files.
Dave
0 comentarios
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!