Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AWG control
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
whuie2
AWG control
Commits
0bdd109b
Commit
0bdd109b
authored
2 years ago
by
camera computer
Browse files
Options
Downloads
Patches
Plain Diff
QOL functions for waveform class
parent
dcab6225
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Python/waveform.py
+13
-0
13 additions, 0 deletions
Python/waveform.py
with
13 additions
and
0 deletions
Python/waveform.py
+
13
−
0
View file @
0bdd109b
...
...
@@ -33,6 +33,19 @@ class Waveform:
self
.
sample_len_min
=
2
*
sample_rate
/
freq_res
/
100
# !!! this only works for sample_rate = 614.4e6 !!!
def
set_amplitudes
(
self
,
amps
:
np
.
ndarray
)
->
bool
:
if
np
.
sum
(
amps
)
>=
2
**
15
-
1
:
print
(
"
warning: amplitudes too high
"
)
return
False
self
.
amplitude
=
amps
[:
len
(
amplitude
)]
return
True
def
set_phase
(
self
,
phase
:
np
.
ndarray
)
->
bool
:
self
.
phi
=
phase
return
True
def
create_static_array
(
wfm
:
Waveform
,
full
=
False
)
->
np
.
ndarray
:
"""
create a static-array-generating waveform with user set number of samples
...
...
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