%rndoff-demo program untuk round-off error
clear; help rndoff;
h=1 %initial value for h
for j=1:21
temp=(10 + h) - 10; %bila tidak ada round-off temp=h
hplot(j)=h;
eplot(j)=abs(temp - h)/h;
h=h /10;
end
loglog (hplot,eplot,'*')
xlabel('h');
ylabel('franctional error');
title ('round-off error')
gambar dari hasil nya: