summaryrefslogtreecommitdiff
path: root/correlations.cpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-03-26 17:25:54 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-03-26 17:25:54 -0300
commit4999894d546b8b91092cddde6b373b66184ec9bb (patch)
treecc42ef29636c1dac43047f230e172c50f1a05184 /correlations.cpp
parent131125bd42b69ba27a2f3ea76534cc3b2348cfb0 (diff)
downloadcode-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.cpp2
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);