%% Fixed Point Iteration main Matlab Code %dejen ketema, March,2019 function p=dejen_fixed_point_2019(g,p0,tol) while 1 p=g(p0); if abs(p-p0)