Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Duplicate of Weird Objective-C Mod Behavior

I'm trying to mod an integer to get an array position so that it will loop round. Doing i % arrayLength works fine for positive numbers but for negative numbers it all goes wrong.

so i need an implementation of

int GetArrayIndex(int i, int arrayLength)

such that

GetArrayIndex(-4, 3) == 2
GetArrayIndex(-3, 3) == 0
GetArrayIndex(-2, 3) == 1
GetArrayIndex(-1, 3) == 2
GetArrayIndex( 0, 3) == 0
GetArrayIndex( 1, 3) == 1
GetArrayIndex( 2, 3) == 2
GetArrayIndex( 3, 3) == 0
GetArrayIndex( 4, 3) == 1

I've done this before but for some reason it's melting my brain today :(

share|improve this question
Not sure why you'd want to index it with negative numbers, but can't you jsut take the absolute value of i ? absIi)%arrayLen – nos Jul 4 '09 at 20:27
1  
@noslasd, no that wouldn't work. – Nosredna Jul 4 '09 at 20:33
1  
Which language is this? – jalf Jul 4 '09 at 20:34
1  
The reason is because the output of modulo should be the remainder when dividing and division truncates towards and not always downward. So 7/3 = 2 +1/3. -7/3 = -2 -1/3. – Eyal Sep 22 '12 at 16:54

6 Answers

I always use my own mod function, defined as

int mod(int x, int m) {
    return (x%m + m)%m;
}

Of course, if you're bothered about having two calls to the modulus operation, you could write it as

int mod(int x, int m) {
    int r = x%m;
    return r<0 ? r+m : r;
}

or variants thereof.

The reason it works is that "x%m" is always in the range [-m+1, m-1]. So if at all it is negative, adding m to it will put it in the positive range without changing its value modulo m.

share|improve this answer
4  
Note: for complete number-theoretic completeness, you might want to add a line at the top saying "if(m<0) m=-m;" although in this case it doesn't matter as "arrayLength" is presumably always positive. – ShreevatsaR Jul 4 '09 at 20:47
1  
If you are going to check the value of m, you should also exclude zero. – billpg Aug 25 '09 at 9:52
1  
@billpg: mod is not defined for m=0, so there's really nothing that the function can be expected to do for that case. IMHO, it's the caller's responsibility to check that. (No one should even want something mod 0.) OTOH, mod is defined for negative m, so I suggested fixing that bug in the code if the function may be called with negative m. Anyway, where error-checking/handling should be done is a perennial question :p – ShreevatsaR Apr 2 '12 at 5:49
@Virtlink: Please don't edit posts unnecessarily. I prefer the style and formatting this way for this post, and there is no compelling reason to change it. – ShreevatsaR Jan 9 at 16:23
@ShreevatsaR: I edited it for readability. Since you insist, I'll leave your posts as-is. – Virtlink Jan 10 at 14:30
show 3 more comments

Please note that C# and C++'s % operator is actually NOT a modulo, it's remainder. The formula for modulo that you want, in your case, is:

float nfmod(float a,float b)
{
    return a - b * floor(a / b);
}

You have to recode this in C# (or C++) but this is the way you get modulo and not a remainder.

share|improve this answer
1  
"Please note that C++'s % operator is actually NOT a modulo, it's remainder. " Thanks, it makes sense now, always wonder why it never worked properly with negative numbers. – leetNightshade Apr 1 '12 at 23:36

Just add your modulus (arrayLength) to the negative result of % and you'll be fine.

share|improve this answer

In my own testing I have found the following to outperform the top two answers under certain circumstances (usually when abs(x) < ~5m) - in other circumstances it is woefully inadequate :)

static float whilemod(float x, float m)
{
    while (x < 0)
        x += m;
    while (x >= m)
        x -= m;
    return x;
}

Not the most elegant code but gets the job done.

share|improve this answer

I like the trick presented by Peter N Lewis on this thread: "If n has a limited range, then you can get the result you want simply by adding a known constant multiple of [the divisor] that is greater that the absolute value of the minimum."

So if I have a value d that is in degrees and I want to take

d % 180f

and I want to avoid the problems if d is negative, then instead I just do this:

(d + 720f) % 180f

This assumes that although d may be negative, it is known that it will never be more negative than -720.

share|improve this answer
public static int SimpleMod(this int a, int mod)
{
    if (a >= mod)
        return a - mod;
    if (a < 0)
        return a + mod;
    return a;
}

For a simple rotation, all you need is this. You really shouldn't call '%' or '/' because both are expensive to calculate.

share|improve this answer
9  
This is incorrect for almost all values of a. – phant0m Sep 18 '12 at 17:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.