Using fsolve with multiple unknowns
조회 수: 11 (최근 30일)
이전 댓글 표시
I'm trying to solve a system of 2 non-linear equations using fsolve with 2 uknowns.
Something like
F = @(x,y)[equation 1; equation2];
x0 = [x1,x1];
y0 = [y1,y1];
[x,y] = fsolve(F,x0,y0);
I'm familiar with using fsolve with one unknown, but unsure on the syntax for a problem like this.
댓글 수: 0
채택된 답변
Matt J
2020년 10월 18일
편집: Matt J
2020년 10월 18일
...but unsure on the syntax for a problem like this.
The syntax does not change. It is simply that your equation expressions will be functions of a vector variable z instead of a scalar.
F = @(z)[z(1)+z(2); 2*Z(1)+z(2)^2];
[x,y] = fsolve(F,[z1,z2]);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!