Skip to content
Snippets Groups Projects
Unverified Commit 4ec51ab6 authored by Stephan Philips's avatar Stephan Philips Committed by GitHub
Browse files

Update Readme.md

parent 61c975a3
No related branches found
No related tags found
No related merge requests found
...@@ -41,11 +41,12 @@ The matrix can be updated with: ...@@ -41,11 +41,12 @@ The matrix can be updated with:
``` ```
To generate virtual channels for IQ signals, you can add the following code: To generate virtual channels for IQ signals, you can add the following code:
```python ```python
awg_IQ_channels = {'vIQ_channels' : ['IQ1','IQ2'], awg_IQ_channels = {'vIQ_channels' : ['qubit_1','qubit_2'],
'rIQ_channels' [['I1','Q1']['I2','Q2']], 'rIQ_channels' : [['I','Q'],['I','Q']],
'LO_freq' :[MW_source.frequency, 1e9] 'LO_freq' :[MW_source.frequency, 1e9]
# do not put the brackets for the MW source # do not put the brackets for the MW source
} }
p.add_IQ_virt_channels(awg_IQ_channels) p.add_IQ_virt_channels(awg_IQ_channels)
``` ```
Where the virtual channels are the new names of the new channels created to do IQ channals. Each of these channels refer to a real channel (note that you can refer to the same real channel multiple times). It is recomendable to create one IQ virtual channel for each qubit. Where the virtual channels are the new names of the new channels created to do IQ channals. Each of these channels refer to a real channel (note that you can refer to the same real channel multiple times). It is recomendable to create one IQ virtual channel for each qubit.
......
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