Basic Math Calculation and Equation
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Stephen23
le 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 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!