Solving implicit equations (variable in summation) without the Symbolic Toolbox
이전 댓글 표시
Hi, I am trying to solve implicit equation in the following general form without the Symbolic Toolbox.

n and N are inputs, and the corresponding parameters (Ci, Ki and Cj, Qj) are known. But I need to automate this calculation for different values of n and N based on what I need.
I am struggling with writing the mathematical expression for a series without using a symbol for a variable. There are other solutions for solving implicit equations without Symbolic Toolbox, but I get stuck when I try to generalize them for a series.
Any help would be greatly appreciated.
Thanks, SP
답변 (1개)
Sailesh Sidhwani
2017년 8월 31일
편집: Sailesh Sidhwani
2017년 8월 31일
Assuming C,K and Q are vectors. You can write your implicit equation as an anonymous function "fun" as follows:
fun = @(x) x + sum((C(1:n)+x) ./ (K(1:n)*x*x)) + sum((C(1:N)*x) ./ (Q(1:N)+x))
Now you can pass this anonymous function "fun" to "fsolve" to solve your implicit equation. You can find the "fsolve" documentation below: https://www.mathworks.com/help/optim/ug/fsolve.html
댓글 수: 2
Alan Weiss
2017년 8월 31일
You might need to put in some sum expressions to get this to work.
Alan Weiss
MATLAB mathematical toolbox documentation
Sailesh Sidhwani
2017년 8월 31일
Thanks Alan for pointing that out.
카테고리
도움말 센터 및 File Exchange에서 Common Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!