1 function num_round
(n
) {
5 function num_ensure_numeric
(n
) {
9 #-----------------------------------
10 # Why do we need num_ensure_numeric?
11 #-----------------------------------
12 # awk appears to be guessing the type of an inputted scalar based on usage, so
13 # if we read-in a number, but did not use it in any numeric operations, but did
14 # use as a string (even in just a format string!) - it will be treated as a
15 # string and can lead to REALLY SURPRISING behavior in conditional statements,
16 # where smaller number may compare as greater than the bigger ones, such as.
20 # $ awk 'BEGIN {x = "75"; y = "100"; sprintf("x: %d, y: %d\n", x, y); if (x > y) {print "75 > 100"} else if (x < y) {print "75 < 100"}}'
22 # $ awk 'BEGIN {x = "75"; y = "100"; sprintf("x: %s, y: %d\n", x, y); if (x > y) {print "75 > 100"} else if (x < y) {print "75 < 100"}}'
25 # However, once used as a number, seems to stay that way even after being
28 # $ awk 'BEGIN {x = "75"; y = "100"; x + y; sprintf("x: %s, y: %d\n", x, y); if (x > y) {print "75 > 100"} else if (x < y) {print "75 < 100"}}'
31 # $ awk 'BEGIN {x = "75"; y = "100"; x + y; sprintf("x: %s, y: %d\n", x, y); z = x y; if (x > y) {print "75 > 100"} else if (x < y) {print "75 < 100"}}'
34 # $ awk 'BEGIN {x = "75"; y = "100"; x + y; z = x y; if (x > y) {print "75 > 100"} else if (x < y) {print "75 < 100"}}'
36 # $ awk 'BEGIN {x = "75"; y = "100"; z = x y; if (x > y) {print "75 > 100"} else if (x < y) {print "75 < 100"}}'
This page took 0.070143 seconds and 4 git commands to generate.