Basic Math Calculation and Equation
1 view (last 30 days)
Show older comments
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 Comments
Accepted Answer
Stephen23
on 3 Sep 2019
>> fun = @(x) x.^x - 5.^x;
>> x = fzero(@(x)fun(x)-0.0237,pi)
x = 5.000007583872926
>> fun(x) % checking
ans = 0.02370000001019434
0 Comments
More Answers (1)
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!