![]() |
Returns a list of operations individually measuring the given qubits.
cirq.ops.measure_each(
*qubits,
key_func: Callable[[cirq.ops.Qid
], str] = str
) -> List[cirq.ops.Operation
]
Used in the notebooks
Used in the tutorials |
---|
The qubits are measured in the computational basis.
Args | |
---|---|
*qubits
|
The qubits to measure. |
key_func
|
Determines the key of the measurements of each qubit. Takes the qubit and returns the key for that qubit. Defaults to str. |
Returns | |
---|---|
A list of operations individually measuring the given qubits. |