![]() |
Returns a list of operations individually measuring the given qubits.
cirq.measure_each(
*qubits,
key_func: Callable[[cirq.Qid
], str] = str
) -> List[cirq.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. |