How to find theta_k in terms of theta_i and theta_j in the following formula

6 ビュー (過去 30 日間)
Theta_k *sqrt(1+theta_k^2) + arcsinh(theta_k) = {theta_j* sqrt(1+theta_j^2)+arcsinh(theta_j)}+{theta_i * sqrt(1+theta_i^2)+arcsinh(theta_i)}

採用された回答

Walter Roberson
Walter Roberson 2019 年 12 月 21 日
F = @(theta_k) (theta_k .* sqrt(1+theta_k.^2) + asinh(theta_k)) - ( (theta_j .* sqrt(1+theta_j.^2) + asinh(theta_j)) + (theta_i .* sqrt(1+theta_i.^2) + asinh(theta_i)));
guess = rand();
fsolve(F, guess)
  2 件のコメント
Hayam Wahdan
Hayam Wahdan 2019 年 12 月 22 日
thank you very much,
but when running these lines of code this error appear " Failure in initial objective function evaluation. FSOLVE cannot continue"
Walter Roberson
Walter Roberson 2019 年 12 月 22 日
What are the initial values for theta_i and theta_j ?
Perhaps you did not define theta_i and theta_j before you defined F.
If you are trying to find a symbolic form for theta_k in terms of unresolved variables theta_i and theta_k then you are not going to be able to do that, at least not in a closed form.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpecial Functions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by