How to equate two equations and find one of the unknown from it as a function of second unknown?
3 ビュー (過去 30 日間)
古いコメントを表示
I have two equations,
R1 = 1.5;
ntone = R1 + etplusone + et; %%Equation(1)
nttwo = log(R1) + 2*etplusone + et^2; %%Equation(2)
%%% Please note, et and etplusone are the unknowns here
I wanted to equate these two equations and obtain etplusone as a function of et
Kindly help or advice on this, please.
0 件のコメント
採用された回答
Paul
2021 年 12 月 13 日
syms et etplusone
R1 = 1.5;
ntone = R1 + etplusone + et; %%Equation(1)
nttwo = log(R1) + 2*etplusone + et^2; %%Equation(2)
soletplusone = solve(ntone == nttwo,etplusone,'ReturnConditions',true)
Seems like this would be straightforward to do by hand, wouldn't it?
その他の回答 (1 件)
Voss
2021 年 12 月 13 日
A little bit of algebra gives:
etplusone = - et^2 + et + R1 - log(R1);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!