Basic Math Calculation and Equation
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Burak Alakus
el 3 de Sept. de 2019
Comentada: Burak Alakus
el 6 de Sept. de 2019
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 comentarios
Respuesta aceptada
Stephen23
el 3 de Sept. de 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 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!