vote up 12 vote down star

I find that I frequently end up writing a function that I always call "clamp()", that is kind of a combination of min() and max(). Is there a standard, "canonical" name for this function?

It always looks something like this:

function clamp($val, $min, $max)
{
  if ($val < $min)
    return $min;
  else if ($val > $max)
    return $max;
  else
    return $val;
}

Or simply using built-in min() and max() functions:

function clamp($val, $min, $max)
{
  return max($min, min($max, $val));
}

Variations exist: You can also check for invalid input, where min > max, and either throw an exception or reverse the inputs. Or you can ignore order of the inputs and call it a median-of-three function, but that can be confusing.

flag

I'd avoid giving your parameters the same names as the functions used, particularly as they're not used in matching pairs (i.e. $min is used with max() and vice-versa). Perhaps $lower and $upper, instead. – Ben Blank Feb 5 at 16:39

7 Answers

vote up 21 vote down check

clamp is a good name.

Let us make it the standard.

link|flag
1  
Seems to be standard (at least in graphics) already: en.wikipedia.org/wiki/Clamping_%28graphics%29/… – Zach Scrivena Feb 5 at 16:05
Hmm.. maybe I picked "clamp" up at some point and forgot where i got it from.. – Kip Feb 5 at 16:10
Kind of a great name after I understood what it was. Plus one to the standard. – Rodrigo Feb 5 at 16:10
I think "clip" is more commonly used. – John D. Cook Feb 5 at 16:29
Numbers may be clamped, while images may be clipped. – Justice Jul 9 at 16:44
vote up 1 vote down

We use pin here. Actually, we use pin for simple ranges and clamp for other stuff.

link|flag
vote up 0 vote down

median

Because it generalizes to more values.

link|flag
This isn't about finding statistical information about a sample set. It's about forcing a number to be in a particular range. – MSN Feb 5 at 16:44
1  
@MSN: technically median(val, min, max) will do the same thing as clamp(val, min, max). plus, the order of the parameters to median() wouldn't matter. but that's not immediately obvious (at least, it wasn't to me). – Kip Feb 5 at 17:46
Median has the advantage of being self descriptive. You get the median element back. For example, will "clamp" throw an exception if my min is less than my max? In that case, which argument is the min? First or second? These details might change from place to place. – Strilanc Feb 6 at 1:25
vote up 1 vote down
clip(val, lo, hi)
link|flag
vote up 4 vote down

In some languages you have the function limit

num = limit(val, min, max)

link|flag
vote up 0 vote down

In the C++ STL, we have std::numerical_limits<type>, which provides both a min() and a max() function. (And some more.)

link|flag
vote up 0 vote down

I'd just go for a function name "rangeCheck"

link|flag
not good, rangeCheck sounds like it CHECKS. But what it does is CHANGING values to be in a range. – Thorsten79 Feb 5 at 16:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.