Changes
Page history
Update Cheat sheet
authored
Mar 07, 2026
by
Sander Snoo
Show whitespace changes
Inline
Side-by-side
Cheat-sheet.md
View page @
c4f30695
...
@@ -123,14 +123,9 @@ from pulse_lib.scans.read_input import read_channels, scan_resonator_frequency
...
@@ -123,14 +123,9 @@ from pulse_lib.scans.read_input import read_channels, scan_resonator_frequency
m_param = read_channels(pulse, 10e3, channels=["SD1", "SD2"],
m_param = read_channels(pulse, 10e3, channels=["SD1", "SD2"],
iq_mode='amplitude+phase')
iq_mode='amplitude+phase')
```
m_param = read_channels(pulse, 10e6, channels=["SD1"], sample_rate=1e6, # time trace!
Returns a single averaged value.
```
Python
m_param = read_channels(pulse, 10e6, channels=["SD1"], sample_rate=1e6,
iq_mode='I+Q')
iq_mode='I+Q')
```
```
Returns a time trace sampled with
`sample_rate`
.
```
Python
```
Python
m_param = scan_resonator_frequency(pulse, channel="SD1", 10e3, 100e6, 200e6, 2e6,
m_param = scan_resonator_frequency(pulse, channel="SD1", 10e3, 100e6, 200e6, 2e6,
...
...
...
...