472,331 Members | 1,728 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,331 software developers and data experts.

Problem With Round Function

I'm having a problem understanding the Round function. Below are quotes
from two
books on VB.NET. The first book shows examples with one argument and
how it
rounds. The second book something different.

Programming Microsoft Windows with Microsoft Visual Basic.NET
"The Round method with a single argument return the whole number nearest
to the argument. If the argument to Round is midway between two whole
numbers,
the return value is the nearest even number."

An Introduction to Programming Using Microsoft Visual Basil.NET
Rules of Rounding
"A number with a decimal potion greater than or equal to .05 is rounded
up and a
number with a decimal portion less than .5 is rounded down. When the
decimal
portion is exactly 0.5, an odd number is rounded up and an even number
remains
the same."

1 Argument
dblAnswer = Math.Round(dblNum)
Num Answer
9.5 10
8.5 8
7.5 8
6.5 6
5.5 6
4.5 4
3.5 4
2.5 2
1.5 2
0.5 0

In the above examples both books "rounds to the nearest even number"
and "an odd number is rounded up and an even number remains the same.",
I understand.

2 Arguments
dblAnswer = Math.Round(dblNum, intDecPt)

Num DecPt Answer
9.5 1 9.5
8.5 1 8.5
7.5 1 7.5
6.5 1 6.5
5.5 1 5.5
4.5 1 4.5
3.5 1 3.5
2.5 1 2.5
1.5 1 1.5
0.5 1 0.5

Num DecPt Answer
9.55 1 9.6
8.55 1 8.6
7.55 1 7.6
6.55 1 6.6
5.55 1 5.6
4.55 1 4.6
3.55 1 3.5
2.55 1 2.5
1.55 1 1.5
0.55 1 0.6

The first example using 2 arguments I understand.
But in the second example using 2 arguments, I don't understand why
1.55, 2.55, and 3.55
didn't round to .6

This is the code I used.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim dblNum As Single
Dim dblAnswer As Single
Dim IntDecPt As Integer
Dim strString As String
Dim x As Integer

strString = Me.TextBox1.Text
x = strString.IndexOf(",")
If x = -1 Then
dblNum = Val(strString)
dblAnswer = Math.Round(dblNum)
Else
dblNum = Val(strString.Substring(0, x))
IntDecPt = Val(strString.Substring(x + 1, 1))
dblAnswer = Math.Round(dblNum, IntDecPt)
End If
Me.Label1.Text = dblAnswer
End Sub
Ron

--
Ronald W. Roberts
Roberts Communication
rw*@robcom.com

Nov 21 '05 #1
9 7250

Ronald W. Roberts wrote:
I'm having a problem understanding the Round function.
Basically, floating point variables don't necessarily hold the values
you think they do.
In the above examples both books "rounds to the nearest even number"
and "an odd number is rounded up and an even number remains the same.", I understand.

2 Arguments
dblAnswer = Math.Round(dblNum, intDecPt)

Num DecPt Answer
9.5 1 9.5
8.5 1 8.5
7.5 1 7.5
6.5 1 6.5
5.5 1 5.5
4.5 1 4.5
3.5 1 3.5
2.5 1 2.5
1.5 1 1.5
0.5 1 0.5

Num DecPt Answer
9.55 1 9.6
8.55 1 8.6
7.55 1 7.6
6.55 1 6.6
5.55 1 5.6
4.55 1 4.6
3.55 1 3.5
2.55 1 2.5
1.55 1 1.5
0.55 1 0.6

The first example using 2 arguments I understand.
But in the second example using 2 arguments, I don't understand why
1.55, 2.55, and 3.55
didn't round to .6

This is the code I used.
.... Dim dblNum As Single
Interesting name for a variable of type Single :)

.... dblAnswer = Math.Round(dblNum, IntDecPt)


Here's some results from the Command window. Here I use the ! type
suffix character to force a literal to be interpreted as a Single;
without this, a non-integral literal is interpreted as a Double:

?Math.Round(2.55, 1)
'this gives 2.6, following the round-to-even rule
?Math.Round(2.55!, 1)
'this gives 2.5, the unexpected result you obtained
?2.55! - 2.55
'this returns a small *negative* number
?cdbl(2.55!)

Basically, when you try and store 2.55 in a Single, the actual value
stored is a tiny amount LESS than 2.55. Since Math.Round() requires a
Double or a Decimal as its first operand, when you ask for
Math.Round(Single), automatic type conversion happens (this is a
widening conversion, so happens silently even under Option Strict), and
the resulting Double is passed to Round. For 1.55, 2.55, 3.55 the
resulting Double is a tiny amount LESS than the exact value. For 4.55,
5.55, ... 9.55 the resulting Double is a tiny bit MORE than the exact
value (try it - ?cdbl(7.55!) gives 7.5500001907348633, for example).

The lesson? If you want to hold exact fractional values, use Decimal,
not Single or Double.

--
Larry Lard
Replies to group please

Nov 21 '05 #2
Ronald,

It is called Bankers rounding and is the only implemented way in Net 1.x. It
is giving everybody more the right part than just rouding up from .5 to
above.

However, I have more times from curiosity asked in this newsgroup who uses
that and have the idea that I never got an answer on that question. (It is
easy by a computer however difficult without that).

Cor
Nov 21 '05 #3
Hi Cor

Here we call it Accountant's rounding.

The idea is that when rounding a series of random monetary amounts, the net
effect of the rounding should be close to zero. If .5 always rounded in the
same direction, then there would be a cumulative benefit in the accountant's
(or client's) favour, depending on which way it rounds.

Charles
"Cor Ligthert" <no************@planet.nl> wrote in message
news:OE**************@TK2MSFTNGP10.phx.gbl...
Ronald,

It is called Bankers rounding and is the only implemented way in Net 1.x.
It is giving everybody more the right part than just rouding up from .5 to
above.

However, I have more times from curiosity asked in this newsgroup who uses
that and have the idea that I never got an answer on that question. (It is
easy by a computer however difficult without that).

Cor

Nov 21 '05 #4
Charles,

I tried to describe it, I know how it works and understand the idea behind
it.
I saw from other messages (not mine) that it is hard to describe.

However do you use it?

Cor
Nov 21 '05 #5
I use Round all the time, but not specifically in financial terms. In my
line I am usually concerned with voltages and current, so it does not really
matter which way the rounding occurs. It would be nice to be able to always
round .5 in the same direction though on occasions.

Charles
"Cor Ligthert" <no************@planet.nl> wrote in message
news:Ow**************@TK2MSFTNGP12.phx.gbl...
Charles,

I tried to describe it, I know how it works and understand the idea behind
it.
I saw from other messages (not mine) that it is hard to describe.

However do you use it?

Cor

Nov 21 '05 #6
In message <er*************@TK2MSFTNGP15.phx.gbl>, Charles Law
<bl***@nowhere.com> writes
I use Round all the time, but not specifically in financial terms. In my
line I am usually concerned with voltages and current, so it does not really
It would be nice to be able to always
round .5 in the same direction though on occasions.
Like this?...

================================================== ====
Function RoundToDP(ByVal n As Double, _
Optional ByVal dp As Integer = 0) As Double
Return Floor(Abs(n * 10 ^ dp) + 0.5) * Sign(n) / 10 ^ dp
End Function
================================================== ====
Kev

Charles
"Cor Ligthert" <no************@planet.nl> wrote in message
news:Ow**************@TK2MSFTNGP12.phx.gbl...
Charles,

I tried to describe it, I know how it works and understand the idea behind
it.
I saw from other messages (not mine) that it is hard to describe.

However do you use it?

Cor



--
Kevin
Nov 21 '05 #7
Hi Kevin

One to add to my helper functions :-)

Charles
"kevin" <ke***@NOsoltecSpiceD.HaMdemon.co.uk> wrote in message
news:Sp**************@soltec.demon.co.uk...
In message <er*************@TK2MSFTNGP15.phx.gbl>, Charles Law
<bl***@nowhere.com> writes
I use Round all the time, but not specifically in financial terms. In my
line I am usually concerned with voltages and current, so it does not
really
It would be nice to be able to always
round .5 in the same direction though on occasions.


Like this?...

================================================== ====
Function RoundToDP(ByVal n As Double, _
Optional ByVal dp As Integer = 0) As Double
Return Floor(Abs(n * 10 ^ dp) + 0.5) * Sign(n) / 10 ^ dp
End Function
================================================== ====
Kev

Charles
"Cor Ligthert" <no************@planet.nl> wrote in message
news:Ow**************@TK2MSFTNGP12.phx.gbl...
Charles,

I tried to describe it, I know how it works and understand the idea
behind
it.
I saw from other messages (not mine) that it is hard to describe.

However do you use it?

Cor



--
Kevin

Nov 21 '05 #8
Ronald W. Roberts wrote:
I'm having a problem understanding the Round function. Below are
quotes from two
books on VB.NET. The first book shows examples with one argument and
how it
rounds. The second book something different.

Programming Microsoft Windows with Microsoft Visual Basic.NET
"The Round method with a single argument return the whole number nearest
to the argument. If the argument to Round is midway between two whole
numbers,
the return value is the nearest even number."

An Introduction to Programming Using Microsoft Visual Basil.NET
Rules of Rounding
"A number with a decimal potion greater than or equal to .05 is
rounded up and a
number with a decimal portion less than .5 is rounded down. When the
decimal
portion is exactly 0.5, an odd number is rounded up and an even number
remains
the same."

1 Argument
dblAnswer = Math.Round(dblNum)
Num Answer
9.5 10
8.5 8
7.5 8
6.5 6
5.5 6
4.5 4
3.5 4
2.5 2
1.5 2
0.5 0

In the above examples both books "rounds to the nearest even number"
and "an odd number is rounded up and an even number remains the same.",
I understand.

2 Arguments
dblAnswer = Math.Round(dblNum, intDecPt)

Num DecPt Answer
9.5 1 9.5
8.5 1 8.5
7.5 1 7.5
6.5 1 6.5
5.5 1 5.5
4.5 1 4.5
3.5 1 3.5
2.5 1 2.5
1.5 1 1.5
0.5 1 0.5

Num DecPt Answer
9.55 1 9.6
8.55 1 8.6
7.55 1 7.6
6.55 1 6.6
5.55 1 5.6
4.55 1 4.6
3.55 1 3.5
2.55 1 2.5
1.55 1 1.5
0.55 1 0.6

The first example using 2 arguments I understand.
But in the second example using 2 arguments, I don't understand why
1.55, 2.55, and 3.55
didn't round to .6

This is the code I used.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim dblNum As Single
Dim dblAnswer As Single
Dim IntDecPt As Integer
Dim strString As String
Dim x As Integer

strString = Me.TextBox1.Text
x = strString.IndexOf(",")
If x = -1 Then
dblNum = Val(strString)
dblAnswer = Math.Round(dblNum)
Else
dblNum = Val(strString.Substring(0, x))
IntDecPt = Val(strString.Substring(x + 1, 1))
dblAnswer = Math.Round(dblNum, IntDecPt)
End If
Me.Label1.Text = dblAnswer
End Sub
Ron

Thanks to all who replied.
I felt like I was standing in the woods and couldnt't see the trees.
All of the replies really help to clear it up.

Thanks again,
Ron

--
Ronald W. Roberts
Roberts Communication
rw*@robcom.com

Nov 21 '05 #9
Be careful trying to use floating point for comparisions such as <>= in if
statements due to this problem and also the possibilty of a different result
in VB.Net 2005. I read where they are improving accuracy of floating point
functions in VB.Net 2005. Exactly what this means I don't know but could
cause weird problems in if statements using floating point results.

"Ronald W. Roberts" wrote:
Ronald W. Roberts wrote:
I'm having a problem understanding the Round function. Below are
quotes from two
books on VB.NET. The first book shows examples with one argument and
how it
rounds. The second book something different.

Programming Microsoft Windows with Microsoft Visual Basic.NET
"The Round method with a single argument return the whole number nearest
to the argument. If the argument to Round is midway between two whole
numbers,
the return value is the nearest even number."

An Introduction to Programming Using Microsoft Visual Basil.NET
Rules of Rounding
"A number with a decimal potion greater than or equal to .05 is
rounded up and a
number with a decimal portion less than .5 is rounded down. When the
decimal
portion is exactly 0.5, an odd number is rounded up and an even number
remains
the same."

1 Argument
dblAnswer = Math.Round(dblNum)
Num Answer
9.5 10
8.5 8
7.5 8
6.5 6
5.5 6
4.5 4
3.5 4
2.5 2
1.5 2
0.5 0

In the above examples both books "rounds to the nearest even number"
and "an odd number is rounded up and an even number remains the same.",
I understand.

2 Arguments
dblAnswer = Math.Round(dblNum, intDecPt)

Num DecPt Answer
9.5 1 9.5
8.5 1 8.5
7.5 1 7.5
6.5 1 6.5
5.5 1 5.5
4.5 1 4.5
3.5 1 3.5
2.5 1 2.5
1.5 1 1.5
0.5 1 0.5

Num DecPt Answer
9.55 1 9.6
8.55 1 8.6
7.55 1 7.6
6.55 1 6.6
5.55 1 5.6
4.55 1 4.6
3.55 1 3.5
2.55 1 2.5
1.55 1 1.5
0.55 1 0.6

The first example using 2 arguments I understand.
But in the second example using 2 arguments, I don't understand why
1.55, 2.55, and 3.55
didn't round to .6

This is the code I used.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim dblNum As Single
Dim dblAnswer As Single
Dim IntDecPt As Integer
Dim strString As String
Dim x As Integer

strString = Me.TextBox1.Text
x = strString.IndexOf(",")
If x = -1 Then
dblNum = Val(strString)
dblAnswer = Math.Round(dblNum)
Else
dblNum = Val(strString.Substring(0, x))
IntDecPt = Val(strString.Substring(x + 1, 1))
dblAnswer = Math.Round(dblNum, IntDecPt)
End If
Me.Label1.Text = dblAnswer
End Sub
Ron

Thanks to all who replied.
I felt like I was standing in the woods and couldnt't see the trees.
All of the replies really help to clear it up.

Thanks again,
Ron

--
Ronald W. Roberts
Roberts Communication
rw*@robcom.com

Nov 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: erica | last post by:
Hi, I am having a very strange problem. I wrote a program in php 4.3.10 that uses objects. My classes.inc file looks like this: <?php //...
3
by: Robert Dell | last post by:
I have a problem comparing strings in an order form i'm writing. I want to give a running total at the bottom of the page and it appears to be...
3
by: mg | last post by:
Hi everybody... We try to white scripts with Pyrhon 2.4 for an acoustic simulation and we wrote these follow lines : <begin script> c = 340...
14
by: m | last post by:
all, i am trying to use the function round() which I found through google to be declared in math.h (...
8
by: Chris Prior | last post by:
Since the last update for office 2003, i've been having issues with the int() function in vb (version 9972 vba retail 6.4.992) The accounting...
3
by: Mark Szlazak | last post by:
The following page simulates a pool cue and cue ball: http://members.aol.com/myscript/cue.html Mouse cursor position around the cue ball...
1
by: lindabaldwin | last post by:
Hi everyone, I have a code that I can use in Excel to round to the nearest 0.5, but I cannot get it to work in Access. When I try to execute it I...
16
by: =?Utf-8?B?R1ROMTcwNzc3?= | last post by:
Hi All, I have a neat little script that calculates price based on quantity without refreshing the page.. the script is - <script...
1
by: Adrienne Boswell | last post by:
Gazing into my crystal ball I observed =?Utf-8?B?R1ROMTcwNzc3?= <GTN170777@discussions.microsoft.comwriting in...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: tammygombez | last post by:
Hey everyone! I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.