フィルターのクリア

to find value of unknown variable

5 ビュー (過去 30 日間)
Ashwini  More
Ashwini More 2019 年 12 月 30 日
コメント済み: Ashwini More 2019 年 12 月 30 日
syms a1 K n E q
eqn = (a1/K)^(1/n) + (a1/E) == q;
E=30000;
K=174.6;
n=0.202;
q=0.02;
solx = solve(eqn, a1)
I want to find value of (a1) but with this code I cant find it. suggest me correct solution

採用された回答

Omer N
Omer N 2019 年 12 月 30 日
You are trying to solve the equation symbolically and it takes a long time/fails.
If you are okay with a numeric solution change the last line to:
solx = vpasolve(subs(eqn), a1)
>>
solx =
77.053800157394491813482910965605
  1 件のコメント
Ashwini  More
Ashwini More 2019 年 12 月 30 日
thank you so much

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by