Update sclight_GPS_test authored by Kentaro Mogushi's avatar Kentaro Mogushi
...@@ -34,4 +34,27 @@ plt.close() ...@@ -34,4 +34,27 @@ plt.close()
![Screen_Shot_2021-03-16_at_6.18.27_PM](uploads/c5ad79cee00bb4d81e80487e737bba1f/Screen_Shot_2021-03-16_at_6.18.27_PM.png) ![Screen_Shot_2021-03-16_at_6.18.27_PM](uploads/c5ad79cee00bb4d81e80487e737bba1f/Screen_Shot_2021-03-16_at_6.18.27_PM.png)
```
plt.scatter((list_GPS_test - list_GPS_test.min())/24./3600., frac_snr, facecolor='blue', edgecolor='black', alpha=0.5)
plt.xlabel('Time [day] since {}'.format(list_GPS_test.min()), fontsize=15)
plt.ylabel('Fraction of noise SNR reduction', fontsize=15)
#plt.xscale('log')
#plt.xlim(xmin=0, xmax=0.2)
plt.savefig('GPS_test_vs_fraction_noise_snr.png')
plt.close()
```
![Screen_Shot_2021-03-16_at_6.31.29_PM](uploads/35a288a294f04f490d95b30607255067/Screen_Shot_2021-03-16_at_6.31.29_PM.png)
```
plt.scatter((list_GPS_test - list_GPS_test.min())/24./3600., frac_snr, facecolor='blue', edgecolor='black', alpha=0.5)
plt.xlabel('Time [sec] since {}'.format(list_GPS_test.min()), fontsize=15)
plt.ylabel('Fraction of noise SNR reduction', fontsize=15)
#plt.xscale('log')
plt.xlim(xmin=0, xmax=0.2)
plt.savefig('GPS_test_vs_fraction_noise_snr.png')
plt.close()
```
![Screen_Shot_2021-03-16_at_6.30.56_PM](uploads/6d22a013989af48fd27683d1f22415a7/Screen_Shot_2021-03-16_at_6.30.56_PM.png)
\ No newline at end of file