[go: up one dir, main page]

Menu

[57f2a1]: / init / gupround.m  Maximize  Restore  History

Download this file

7 lines (6 with data), 143 Bytes

1
2
3
4
5
6
% gupround.m: rounds off close to integer values
%
% See also: eps
function ar=gupround(a)
ar=round(a);
if max(abs(a-ar))>eps(1e3), ar=a; end