How to solve equations that use other equations?

1 visualización (últimos 30 días)
Simrat Singh
Simrat Singh el 3 de Jun. de 2016
Respondida: David el 27 de Jul. de 2016
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);

Respuestas (1)

David
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

Community Treasure Hunt

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

Start Hunting!

Translated by