WUT_Computer_Science/ENUME/references/ENUME_Project1/TASK1.m
2021-11-10 13:12:25 +01:00

9 lines
115 B
Matlab

function macheps = Task1()
macheps = 1;
while 1 + (macheps/2)>1
macheps = macheps/2;
end
end