summaryrefslogtreecommitdiff
path: root/print_correlations.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'print_correlations.cpp')
-rw-r--r--print_correlations.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/print_correlations.cpp b/print_correlations.cpp
index 45a10b5..4627119 100644
--- a/print_correlations.cpp
+++ b/print_correlations.cpp
@@ -78,7 +78,7 @@ int main(int argc, char* argv[]) {
logFourierLoad(C, R, Ĉ, Ȓ, p, s, λ, τ₀, β, log2n, Δτ, logShift);
for (unsigned n = 0; n < N; n++) {
- std::cout << fft.t(n) << " " << C[n] << " " << R[n] << " " << fft.ν(n) << " " << Ĉ[n] << " " << Ȓ[n] << std::endl;
+ std::cout << fft.t(n) << " " << C[n] << " " << R[n] << " " << fft.ν(n) << " " << Ĉ[n].real() << " " << Ȓ[n].real() << " " << Ȓ[n].imag() << std::endl;
}
}