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
Walter Roberson 2016년 11월 26일

0 개 추천

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에 대해 자세히 알아보기

제품

태그

질문:

2016년 11월 26일

답변:

2016년 11월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by