×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Rounding REAL numbers

Rounding REAL numbers

Rounding REAL numbers

(OP)
I can’t find an Fortran function that rounds a real number to a given decimal place (such as ROUND(x,y) in VB).  The only way I’ve found of doing it which works but is ugly is, for the case of wanting to round to the third decimal:

 

dummyVar = 123.456789

dummyVar = TRUNC(dummyVar * 1000.0) / 1000.0

 

There must be a better way?  Any ideas?

Replies continue below

Recommended for you

RE: Rounding REAL numbers

wowski

There is no elegant method to do this. Your TRUNC function is not part of the Fortran standard and I have never seen this in any of the Fortran compilers that I have used. Instead you can use INT to remove all the decimal places and FLOAT to return the variable to a real. It is standard practice to round numbers up by adding 0.5 before taking the integer.

My code to do this is:-

      PROGRAM TRUNCATE

      REAL*8 A,B

      A=12345.6789

      B=FLOAT (INT(A * 1000.0 + 0.5)) / 1000.0

      WRITE(*,*)'A,B =',A,B

      STOP
      END

However why would you need to do this? It is customary to use an appropriate format to write numbers out with the required number of decimal places.

RE: Rounding REAL numbers

I usually put restriction on the output.
example:

11111   format(1f8.1)
write(*,11111)dummyVar

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close