In xcode /objective c for the iphone

I have a float with the value 0.00004876544 how would i get it to display to 2 decimal places after the 1st significant number E.g. 0.00004876544 would read 0.000049?

any help would be appreciated

link|improve this question

1  
Would this work: stackoverflow.com/questions/202302/… – TreyA Jul 19 '11 at 17:16
Thanks TreyA i'm not sure its what i'm looking for. – Tom Kelly Jul 19 '11 at 17:23
1  
@Tom Are you sure? The algorithm in the accepted answer looks good, you'd just have to convert it to C and it should work fine. – Nate Thorn Jul 19 '11 at 17:27
@Nate really, I just looked at the examples and it didn't seem to apply. I'm not very mathematical. and wouldn't know how to convert this to objective-c. any help? – Tom Kelly Jul 19 '11 at 17:40
possible duplicate of How do I "round" a number to end in certain digits? – Jacques Cousteau Jul 19 '11 at 18:18
show 2 more comments
feedback

1 Answer

up vote 1 down vote accepted

I didn't run this through a compiler to double-check it, but here's the basic jist of the algorithm (converted from the answer to this question):

-(float) round:(float)num toSignificantFigures:(int)n {
    if(num == 0) {
        return 0;
    }

    double d = ceil(log10(num < 0 ? -num: num));
    int power = n - (int) d;

    double magnitude = pow(10, power);
    long shifted = round(num*magnitude);
    return shifted/magnitude;
}

The important thing to remember is that Objective-C is a superset of C, so anything that is valid in C is also valid in Objective-C. This method uses C functions defined in math.h.

link|improve this answer
Perfect, thank you. – Tom Kelly Jul 27 '11 at 13:47
feedback

Your Answer

 
or
required, but never shown

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