summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/yc4/clamp.m
blob: 78ddedd967c6ec8adf96df0522358c45661f2951 (plain) (blame)
1
2
3
4
5
6
function val = clamp(n, m, M)
% returns n if n is between m and M, otherwise
	% m if n < m
	% M if n > m
val = min(max(n, m), M);
end