diff options
| author | wukong <wukong@longaeva> | 2018-09-09 23:48:31 -0700 |
|---|---|---|
| committer | wukong <wukong@longaeva> | 2018-09-09 23:48:31 -0700 |
| commit | d1f6c89be163d9399d569e01458242d8ce15e041 (patch) | |
| tree | a263822af5cb1532f9eb1abe7b7ae6334c27d170 /sum3.awk | |
| parent | e42cee748f5bc38d11742739b5e2cad4b6a07c43 (diff) | |
added summations to quad_reg
added in-progress lpf.awk (low pass filter), an adaptation of convolution
script (conv.awk) to use delmitied columns as input
additional tweaking of OFMT, OFS, and conditional print statements
Diffstat (limited to 'sum3.awk')
| -rw-r--r-- | sum3.awk | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -11,7 +11,9 @@ function isnum(n) { } -NR==1 { +BEGIN { OFS = FS } + +NR == 1 { nfld = NF for (i=1; i<=NF; i++) numcol[i] = isnum($i) |
