Basic Math Calculation and Equation
4 次查看(过去 30 天)
显示 更早的评论
Hello guys. I just want to calculate the following equation yet my math is not enough for that i guess.
The equation is;
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!