MATLAB: F(x)=sin(x)-x^5=0 providing x is not equals 0 ,function in the interval x [0,3]

communicationMATLAB

f(x)=sin(x)-x^5=0 providing x is not equals 0

Best Answer

>> [x0,fval]=fzero(@(x)sin(x)-x.^5,[0.8,1])
x0 =
0.9610
fval =
-1.1102e-16