Click here to Skip to main content
Licence 
First Posted 5 Dec 2002
Views 45,732
Bookmarked 20 times

A Strategy for Displaying Numeric Data with Significant Figures

By | 5 Dec 2002 | Article
A strategy for displaying numeric data with significant figures using Log10.

Introduction

Problem: Some times numeric data, for example floats and doubles, needs to be displayed with a certain amount of decimal precision and at times with a given amount of significant figures.

For example:

4.5568 displayed with 2 Significant Figures is: 4.6
0.0221 displayed with 3 Significant Figures is: 0.022
5.9 displayed with 1 Significant Figures is: 6

Strategy: Using the log10 function we can calculate the number of digits for the integer part of the number we are manipulating. The decimal part of the number can be displayed properly with a sprintf call or something similar as we can see in our function below. This solution also rounds the final number, which is usually desirable when displaying significant figures.

double CalculateSigFig(double num, int sigfig)
{
    char buff[128];//temp buffer
    double temp = 0; 
    int lognum = 0;
    std::string formatbuff;//format string

    if(sigfig <= 0 || num == 0)//damage control
        return num;

    temp = int(num);
    if(temp * -1 > 0)//check for negative numbers
        temp *= -1;

    lognum = (int)log10(temp);//get significant digits of integer part of num
    ++lognum; //adjust for log10 results
    sigfig -= lognum;//subtract for decimal precision calculation

    if(sigfig < 0)//check for negative results
        sigfig = 0;


    //construct format string
    formatbuff = "%";
    itoa(lognum, buff, 10);//convert lognum to int
    formatbuff += buff;
    formatbuff += ".";
    itoa(sigfig, buff, 10);
    formatbuff += buff;
    formatbuff += "f";
    //end construct format string

    //use format string to get desired results
    sprintf(buff, formatbuff.c_str(), num);

    return atof(buff);//return double converted from string
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Bryan Brown



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralC# Version of Significant Figures or Significant Digits PinmemberLeonard Lee21:26 20 Apr '08  
QuestionAnother strategy ? PinmemberStlan3:29 9 Dec '02  
General_fcvt PinmemberTim Smith2:41 7 Dec '02  
GeneralRe: _fcvt Pinmemberzarzor11:20 7 Dec '02  
GeneralOr what... Pinmemberzarzor13:22 6 Dec '02  
QuestionWhat does that give me over... PinmemberNitron10:33 6 Dec '02  
GeneralDoesn't work PinmemberKevinHall6:19 6 Dec '02  
QuestionDoes it work? Pinmembereddie.breeveld5:20 6 Dec '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 6 Dec 2002
Article Copyright 2002 by Bryan Brown
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid