diff options
| author | wukong <wukong@longaeva> | 2026-04-10 23:46:12 -0700 |
|---|---|---|
| committer | wukong <wukong@longaeva> | 2026-04-10 23:46:12 -0700 |
| commit | 4c4eb1bd8f003b3b57707badd2dd089ed193a896 (patch) | |
| tree | 15b62907fffd70c46a9b4369df93ab33c6aa88ac /fir_window_gaussian.awk | |
| parent | e7d1781578e846a7b1d634cd43c8fab00a67b883 (diff) | |
renamed fir window generators;
minor edits to whitespace and comments for more consistent style;
Diffstat (limited to '')
| -rw-r--r-- | fir_window_gaussian.awk (renamed from gaussian.awk) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gaussian.awk b/fir_window_gaussian.awk index 402ea10..14ebc48 100644 --- a/gaussian.awk +++ b/fir_window_gaussian.awk @@ -1,11 +1,11 @@ #!/usr/bin/awk -f
-### gaussian.awk
+### fir_window_gaussian.awk
# generate a Gaussian window
# https://en.wikipedia.org/wiki/Window_function
-### Gaussian
+# Gaussian window
function gaussian(n) {
# sigma <= 0.5
sigma = 0.4
@@ -35,5 +35,5 @@ BEGIN { print n, 1.0
}
}
-
}
+
|
