Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
double precision or rounding numbers?
#4
If you need only to display the variable, don't use VARIANT etc. To display with 2 digits after decimal, use this:

out "%.2f" d

To display without extra 0 and decimal point, use this:

Create member function (menu File -> New -> New Member Function) str.FormatDouble and paste this code (menu Edit -> Other formats -> Paste escaped):
Code:
Copy      Help
function double'd precision

;Converts double (floating point) value to string so that it will not contain extra 0 or decimal point at the end.

;precision - max number of digits after decimal point.

;EXAMPLE
;double d=14.94454592
;str s.FormatDouble(d 2)
;out s



format(_s.from("%." precision "f") d)
if(precision) rtrim("0"); rtrim(".")

Use it like in the EXAMPLE.


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)