Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to calculate the value of theta_k in terms of theta_i and theta_j

조회 수: 1 (최근 30일)
Hayam Wahdan
Hayam Wahdan 2020년 1월 9일
마감: MATLAB Answer Bot 2021년 8월 20일
how to calculate the value of theta_k in terms of theta_i and theta_j in the following non- linear formula
log(Theta_k +sqrt(1+theta_k^2) ) - sqrt(1+theta_k^2)/theta_k = log(Theta_i +sqrt(1+theta_i^2) ) - sqrt(1+theta_i^2)/theta_i + log(Theta_j +sqrt(1+theta_j^2) ) - sqrt(1+theta_j^2)/theta_j

답변 (1개)

Aquatris
Aquatris 2020년 1월 10일
If you have symbolic toolbox, you can use something like this;
syms a b c real % define a b c as real symbolic variables
eq = a-b = c; % define equation to be solved
solve(eq,b) % solve for b
FYI, in your equation, you have Theta_k and theta_k, which Matlab will treat as two different variables.

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by