Changes
Page history
Update sclight_GPS_test
authored
Mar 16, 2021
by
Kentaro Mogushi
Show whitespace changes
Inline
Side-by-side
home/sclight_GPS_test.md
View page @
f9add9ac
...
...
@@ -34,4 +34,27 @@ plt.close()

```
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()
```

```
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()
```

\ No newline at end of file