diff options
author | andreas128 <Andreas> | 2017-09-08 10:05:56 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-08 10:05:56 +0200 |
commit | 988e0b9472489657f86838362b176863ec42d0fd (patch) | |
tree | 9a782277c75c8477119716f24e4064879ac0c56c /dpd/src/subsample_align.py | |
parent | 1b6c5dd58658bbc1b423b50baa15ca3fae6a1065 (diff) | |
download | dabmod-988e0b9472489657f86838362b176863ec42d0fd.tar.gz dabmod-988e0b9472489657f86838362b176863ec42d0fd.tar.bz2 dabmod-988e0b9472489657f86838362b176863ec42d0fd.zip |
Cleanup and change logging plots to svg
Diffstat (limited to 'dpd/src/subsample_align.py')
-rwxr-xr-x | dpd/src/subsample_align.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpd/src/subsample_align.py b/dpd/src/subsample_align.py index cc2b975..6d1cd2a 100755 --- a/dpd/src/subsample_align.py +++ b/dpd/src/subsample_align.py @@ -74,7 +74,7 @@ def subsample_align(sig, ref_sig, plot=False): taus = corr(ixs) dt = datetime.datetime.now().isoformat() - tau_path = (logging_path + "/" + dt + "_tau.pdf") + tau_path = (logging_path + "/" + dt + "_tau.svg") plt.plot(ixs, taus) plt.title("Subsample correlation, minimum is best: {}".format(best_tau)) plt.savefig(tau_path) |