diff options
author | andreas128 <Andreas> | 2017-08-17 16:28:13 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-08-17 16:28:13 +0200 |
commit | 4fe5b4cacad22c84110061cb1cce4c0cf29b79fa (patch) | |
tree | 82c7d94d7301fcd5b4cacb92bf6ad55340a1251d /dpd/src/Measure.py | |
parent | 2d70a92c178b4cf7460d09efd93a0e7918781a64 (diff) | |
download | dabmod-4fe5b4cacad22c84110061cb1cce4c0cf29b79fa.tar.gz dabmod-4fe5b4cacad22c84110061cb1cce4c0cf29b79fa.tar.bz2 dabmod-4fe5b4cacad22c84110061cb1cce4c0cf29b79fa.zip |
Fix plotting without DISPLAY
Diffstat (limited to 'dpd/src/Measure.py')
-rw-r--r-- | dpd/src/Measure.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dpd/src/Measure.py b/dpd/src/Measure.py index 7b5379d..49e2431 100644 --- a/dpd/src/Measure.py +++ b/dpd/src/Measure.py @@ -4,6 +4,8 @@ import sys import socket import struct import numpy as np +import matplotlib +matplotlib.use('agg') import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation import argparse @@ -116,7 +118,7 @@ class Measure: % (len(txframe), txframe.dtype, len(rxframe), rxframe.dtype, len(txframe_aligned), txframe_aligned.dtype, len(rxframe_aligned), rxframe_aligned.dtype) ) - return txframe_aligned, rxframe_aligned + return txframe_aligned, None, rxframe_aligned, None # The MIT License (MIT) # |