Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Convert Kraus operators to the natural representation #885

Open
vprusso opened this issue Nov 4, 2024 · 0 comments
Open

Feature: Convert Kraus operators to the natural representation #885

vprusso opened this issue Nov 4, 2024 · 0 comments
Labels

Comments

@vprusso
Copy link
Owner

vprusso commented Nov 4, 2024

Feature: Given a list of Kraus operators, calculate the natural representation of the corresponding quantum channel in the standard basis.

For the definition of the natural channel representation, consult Section 2.2.2 in TQI.

Something akin to the following would likely

import numpy as np
from toqito.matrix_ops import tensor

def natural_representation(kraus_ops):
    return np.sum([tensor(k, np.conjugate(k)) for k in kraus_ops], 0)
@vprusso vprusso changed the title Feature: Convert Choi representation to the natural representation Feature: Convert Kraus operators to the natural representation Nov 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant