Logo

Programming-Idioms

History of Idiom 65 > diff from v13 to v14

Edit summary for version 14 by :

Version 13

2015-09-03, 16:23:00

Version 14

2015-09-05, 07:12:54

Idiom #65 Format decimal number

From real value x in [0,1], create its percentage string representation s with one digit after decimal point. E.g. 0.15625 -> "15.6%"

Idiom #65 Format decimal number

From real value x in [0,1], create its percentage string representation s with one digit after decimal point. E.g. 0.15625 -> "15.6%"

Code
s = Numeric.showFFloat (Just 1) (100*x) "%"