applying iterative solutions with Fsolve in multiple variables equations.

hello; have variables in these equations. they are x z and k. And I am trying to solve it with iterative process but I can't find the result for 3 variables. can you help me. where am I doing wrong?

 채택된 답변

f = @(x,y,k) [busdata(2,2)-...;
busdata(3,2)-...;
busdata(3,3)-...];
F = @(p)f(p(1),p(2),p(3));
p0 = [0;0;0];
options = optimoptions('fsolve','Display','iter');
[p,fval] = fsolve(F,p0,options)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품

릴리스

R2021b

질문:

2022년 5월 23일

답변:

2022년 5월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by