cirq.to_valid_density_matrix
Verifies the density_matrix_rep is valid and converts it to ndarray form.
cirq.to_valid_density_matrix(
density_matrix_rep: Union[np.ndarray, 'cirq.STATE_VECTOR_LIKE'],
num_qubits: Optional[int] = None,
*,
qid_shape: Optional[Tuple[int, ...]] = None,
dtype: Optional['DTypeLike'] = None,
atol: float = 1e-07
) -> np.ndarray
This method is used to support passing a matrix, a state vector,
or a computational basis state as a representation of a state.
Args |
density_matrix_rep
|
If a numpy array, if it is of rank 2 (a matrix),
then this is the density matrix. If it is a numpy array of rank 1
(a vector) then this is a state vector. If this is an int,
then this is the computation basis state.
|
num_qubits
|
The number of qubits for the density matrix. The
density_matrix_rep must be valid for this number of qubits.
|
qid_shape
|
The qid shape of the state vector. Specify this argument
when using qudits.
|
dtype
|
The numpy dtype of the density matrix, will be used when creating
the state for a computational basis state (int), or validated
against if density_matrix_rep is a numpy array.
|
atol
|
Numerical tolerance for verifying density matrix properties.
|
Returns |
A numpy matrix corresponding to the density matrix on the given number
of qubits. Note that this matrix may share memory with the input
density_matrix_rep .
|
Raises |
ValueError if the density_matrix_rep is not valid.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-06-27 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-06-27 UTC."],[],[]]