Set a qubit to a particular state.
| C# | Visual Basic | Visual C++ |
IQuantumRegister SetQubit( int Index, bool SetTo )
Function SetQubit ( _ Index As Integer, _ SetTo As Boolean _ ) As IQuantumRegister
IQuantumRegister^ SetQubit( int Index, bool SetTo )
- Index (Int32)
- Index of the qubit to set.
- SetTo (Boolean)
- Value to set the qubit to, true (1) or false (0)
A reference to the modified register.
A qubit is measured before it is set, so any other qubits entangled
with this one will be effected.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | Thrown if the specified index
is out of range. |