tmean: minor code style change - numtools - perform numerical operations on vectors and matrices in unix pipes
 (HTM) git clone git://src.adamsgaard.dk/numtools
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 3f1938bbc1f17fcf3d959d4cf7e3e934bc231cd9
 (DIR) parent 66df2bbd7cf78e43d114abcccfc3aa00f212f6d5
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Wed, 25 Nov 2020 14:44:35 +0100
       
       mean: minor code style change
       
       Diffstat:
         M mean                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/mean b/mean
       t@@ -5,7 +5,7 @@
        }
        END {
                for (i = 0; i < NF; i++) {
       -                printf("%g", sum[i]/NR)
       +                printf("%g", sum[i] / NR)
                        if (i + 1 < NF)
                                printf("\t")
                }