Skip to content
Snippets Groups Projects
Commit e500081d authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Add missing space to formatted output

parent dcbd97ab
No related branches found
No related tags found
No related merge requests found
...@@ -1007,7 +1007,7 @@ void ScattererConfiguration::write_formatted(string file_name) { ...@@ -1007,7 +1007,7 @@ void ScattererConfiguration::write_formatted(string file_name) {
for (int jxi476 = 0; jxi476 < number_of_scales; jxi476++) { for (int jxi476 = 0; jxi476 < number_of_scales; jxi476++) {
double dc0_real = dc0_matrix[ic477 - 1][i478 - 1][jxi476].real(); double dc0_real = dc0_matrix[ic477 - 1][i478 - 1][jxi476].real();
double dc0_img = dc0_matrix[ic477 - 1][i478 - 1][jxi476].imag(); double dc0_img = dc0_matrix[ic477 - 1][i478 - 1][jxi476].imag();
fprintf(output, "%5d%12.4lE%12.4lE\n", (jxi476 + 1), dc0_real, dc0_img); fprintf(output, "%5d %12.4lE%12.4lE\n", (jxi476 + 1), dc0_real, dc0_img);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment