Update Cheat sheet authored by Sander Snoo's avatar Sander Snoo
...@@ -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,
... ...
......