How to solve equations that use other equations?

조회 수: 2 (최근 30일)
Simrat Singh
Simrat Singh 2016년 6월 3일
답변: David 2016년 7월 27일
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);

답변 (1개)

David
David 2016년 7월 27일
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

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by