フィルターのクリア

How to plug in algebraic equation and solution for it?

1 回表示 (過去 30 日間)
Meet Koradia
Meet Koradia 2022 年 5 月 13 日
コメント済み: Chunru 2022 年 5 月 13 日
what would be the code for this equation and how do I solve for t in this case?

回答 (1 件)

Chunru
Chunru 2022 年 5 月 13 日
It seems that the equation you give has no soltion.
f = @(t) 3.7 *( 1 + 4.1*.006/170*(3.7/180)^(2/3) * nthroot(t.^5, 3)).^-1.5;
fplot(f, [-1000 1000]); grid on
fsolve(f, 5000 )
No solution found. fsolve stopped because the problem appears regular as measured by the gradient, but the vector of function values is not near zero as measured by the value of the function tolerance.
ans = 5.4062e+03
  4 件のコメント
Chunru
Chunru 2022 年 5 月 13 日
What is the value of z?
Chunru
Chunru 2022 年 5 月 13 日
z= 10;
f = @(t) 3.7 *( 1 + 4.1*.006/170*(3.7/180)^(2/3) * nthroot(t.^5, 3)).^-1.5 - z;
%fplot(f, [-1000 1000]); grid on
fsolve(f, -100 )
Equation solved. fsolve completed because the vector of function values is near zero as measured by the value of the function tolerance, and the problem appears regular as measured by the gradient.
ans = -616.2730

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

カテゴリ

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