Skip to content
Snippets Groups Projects
Commit c270b20a authored by Sander de Snoo's avatar Sander de Snoo
Browse files

Fixed Q, amp and angle output in video mode

parent 26fe3f27
No related branches found
No related tags found
No related merge requests found
# Changelog
All notable changes to core_tools will be documented in this file.
## \[1.4.9] - 2022-11-@@@
## \[1.4.9] - 2022-11-22
- Added 'I+Q' and 'abs+angle' to iq_mode options of video mode
- Fixed Q, amp and angle output in VideoMode
## \[1.4.8] - 2022-11-21
......
......@@ -442,7 +442,7 @@ class _digitzer_scan_parameter(MultiParameter):
data.append(func(ch_data))
# make sure that data is put in the right order.
data_out = [np.zeros(self.shape) for i in range(len(data))]
data_out = [np.zeros(self.shape, dtype=d.dtype) for d in data]
for i in range(len(data)):
ch_data = data[i].reshape(self.shape)
......
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