Returns a slice (subset) of the register from StartIndex to the end, then has
the operation applied to it.
| C# | Visual Basic | Visual C++ |
IQuantumRegister SliceFrom( int StartIndex, IQuantumOperation Operation )
Function SliceFrom ( _ StartIndex As Integer, _ Operation As IQuantumOperation _ ) As IQuantumRegister
IQuantumRegister^ SliceFrom( int StartIndex, IQuantumOperation^ Operation )
- StartIndex (Int32)
- Starting index in the register to get the slice of.
- Operation (IQuantumOperation)
- The operation to apply to the slice.
The quantum register representing the slice with the operation then applied.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | Thrown if the start index is out of range. |
| 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. |
| ArgumentException | Thrown if the operation does not have
AbstractSimulatedQuantumOperation as a base class. |