Skip to content
Snippets Groups Projects
Commit f626324a authored by Martin Killenberg's avatar Martin Killenberg
Browse files

fix: phase is plotted as magnitue

parent 6689aeae
No related branches found
No related tags found
No related merge requests found
...@@ -160,7 +160,7 @@ class MeasurementPlot: ...@@ -160,7 +160,7 @@ class MeasurementPlot:
self.path_collection_fit.set_offsets(np.c_[[], []]) self.path_collection_fit.set_offsets(np.c_[[], []])
# refresh data for signal1 in subplot for signal0 and signal1 # refresh data for signal1 in subplot for signal0 and signal1
signal1s = data_frame[self.reference_signal_names[0]] signal1s = data_frame[self.reference_signal_names[1]]
minimum, maximum = self.get_extended_min_max(signal1s) minimum, maximum = self.get_extended_min_max(signal1s)
self.signal1_axis.set_ylim(minimum, maximum) self.signal1_axis.set_ylim(minimum, maximum)
self.path_collection_signal1.set_offsets(np.c_[timestamps, signal1s]) self.path_collection_signal1.set_offsets(np.c_[timestamps, signal1s])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment