diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-26 17:25:54 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-26 17:25:54 -0300 |
commit | 4999894d546b8b91092cddde6b373b66184ec9bb (patch) | |
tree | cc42ef29636c1dac43047f230e172c50f1a05184 /correlations.cpp | |
parent | 131125bd42b69ba27a2f3ea76534cc3b2348cfb0 (diff) | |
download | code-4999894d546b8b91092cddde6b373b66184ec9bb.tar.gz code-4999894d546b8b91092cddde6b373b66184ec9bb.tar.bz2 code-4999894d546b8b91092cddde6b373b66184ec9bb.zip |
Changed correlations processing to make it easier
Diffstat (limited to 'correlations.cpp')
-rw-r--r-- | correlations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/correlations.cpp b/correlations.cpp index ef0222e..94d8b74 100644 --- a/correlations.cpp +++ b/correlations.cpp @@ -27,7 +27,7 @@ int main(int argc, char* argv[]) { E = atof(optarg); break; case 't': - Δt = atof(optarg); + Δt = pow(10, -atof(optarg)); break; case 'w': Δw = atof(optarg); |