Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core_tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
QuTech QDLabs
core_tools
Commits
c270b20a
Commit
c270b20a
authored
2 years ago
by
Sander de Snoo
Browse files
Options
Downloads
Patches
Plain Diff
Fixed Q, amp and angle output in video mode
parent
26fe3f27
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+3
-1
3 additions, 1 deletion
CHANGELOG.md
core_tools/GUI/keysight_videomaps/data_getter/scan_generator_Keysight.py
+1
-1
1 addition, 1 deletion
...keysight_videomaps/data_getter/scan_generator_Keysight.py
with
4 additions
and
2 deletions
CHANGELOG.md
+
3
−
1
View file @
c270b20a
# 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
...
...
This diff is collapsed.
Click to expand it.
core_tools/GUI/keysight_videomaps/data_getter/scan_generator_Keysight.py
+
1
−
1
View file @
c270b20a
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment