mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:23:11 +02:00
9 lines
115 B
Matlab
9 lines
115 B
Matlab
function macheps = Task1()
|
|
macheps = 1;
|
|
while 1 + (macheps/2)>1
|
|
macheps = macheps/2;
|
|
end
|
|
end
|
|
|
|
|