Slice (subset) a quantum register and perform an operation on the slice.
| C# | Visual Basic | Visual C++ |
IQuantumRegister Slice( int StartIndex, int StopIndex, IQuantumOperation Operation )
Function Slice ( _ StartIndex As Integer, _ StopIndex As Integer, _ Operation As IQuantumOperation _ ) As IQuantumRegister
IQuantumRegister^ Slice( int StartIndex, int StopIndex, IQuantumOperation^ Operation )
- StartIndex (Int32)
- Starting index in the register to get the slice of.
- StopIndex (Int32)
- Ending index in the register to get the slice of.
- Operation (IQuantumOperation)
- The operation to apply to the slice.
A quantum register representing the slice with the operation
applied.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | Thrown if the start or stop index parameters
are out of range. |
| ArgumentOutOfRangeException | Thrown if the stop index is less
than the start index. |
| NotUnitaryOperationException | Thrown if a non-unitary operation is
passed. All quantum operations must be unitary. |
| SizeMismatchException | Thrown if the size of one of the operations
does not match the size of the register. |