필터 지우기
필터 지우기

how to solve two equation with 2 variables

조회 수: 1 (최근 30일)
Adham Ahmed
Adham Ahmed 2023년 2월 16일
편집: Matt J 2023년 2월 16일
how to solve these two equations :
sin(x2) +2x2 =0
sin(x1-1)+2(x1-1)=0

채택된 답변

Matt J
Matt J 2023년 2월 16일
편집: Matt J 2023년 2월 16일
You could use fsolve or fminsearch
fun=@(x) [sin(x(2))+2*x(2); sin(x(1)-1)+2*(x(1)-1)];
[x,fval]=fsolve(fun,[0;0])
Equation solved. fsolve completed because the vector of function values is near zero as measured by the value of the function tolerance, and the problem appears regular as measured by the gradient.
x = 2×1
1 0
fval = 2×1
0 0
[x,fval]=fminsearch(@(x) norm(fun(x)), [0,0])
x = 1×2
1.0000 -0.0000
fval = 9.4426e-05

추가 답변 (0개)

카테고리

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