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