1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-29 10:24:51 +00:00

Print both plots

This commit is contained in:
Carles Fernandez 2017-10-22 08:29:35 +02:00
parent b6573b00e6
commit 785d6185c3

View File

@ -132,6 +132,7 @@ TEST(FFTLengthTest, MeasureExecutionTime)
g1.set_ylabel("Execution time [ms]");
g1.plot_xy(fft_sizes_v, execution_times, "FFT execution time (averaged over " + std::to_string(FLAGS_fft_iterations_test) + " iterations)");
g1.set_style("points").plot_xy(powers_of_two, execution_times_powers_of_two, "Power of 2");
g1.savetops("FFT_execution_times_extended");
g1.showonscreen(); // window output
Gnuplot g2("linespoints");