Basic Math Calculation and Equation
1 回表示 (過去 30 日間)
古いコメントを表示
Hello guys. I just want to calculate the following equation yet my math is not enough for that i guess.
The equation is;
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/236821/image.png)
How to find x?
Thanks.
0 件のコメント
採用された回答
Stephen23
2019 年 9 月 3 日
>> fun = @(x) x.^x - 5.^x;
>> x = fzero(@(x)fun(x)-0.0237,pi)
x = 5.000007583872926
>> fun(x) % checking
ans = 0.02370000001019434
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!