How can I solve function of x?
이전 댓글 표시
If I have a functions of x
Bx= function of x
By= function of x
B=sqrt(Bx^2+By^2)
Ax= function of x
Ay= function of x
A=sqrt(Ax^2+Ay^2)
how can I solve the equation A=B in MatLab?
답변 (1개)
Walter Roberson
2016년 11월 26일
syms x
Bx = formula in x
By = formula in x
B = sqrt(Bx.^2 + By.^2)
Ax = formula in x
Ay = formula in x
A = sqrt(Ax.^2 + Ay.^2)
solve(A == B, x)
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!