Skip to content

Commit

Permalink
fix: remove raw from measured density matrix plot
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 committed Oct 30, 2024
1 parent 1bafd6c commit 720a73e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibocal/protocols/two_qubit_state_tomography.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def _plot(data: StateTomographyData, fit: StateTomographyResults, target: QubitP
return [fig_measurements], fitting_report

measured = np.array(fit.measured_density_matrix_real[target]) + 1j * np.array(
fit.measured_raw_density_matrix_imag[target]
fit.measured_density_matrix_imag[target]
)
fig = plot_reconstruction(data.ideal[target], measured)

Expand Down

0 comments on commit 720a73e

Please sign in to comment.