MATLAB: Solving equations numerically

numerical

Hi everyone
Could someone help me solve the following equation numerically:
(exp(-x) + exp(-(x*exp(0.2))))/exp(0.5) = 0.8832 ?
Thanks

Best Answer

fzero(@(x)((1/exp(x) + 1/exp(x*exp(0.2))))/exp(0.5)-0.8832,pi)