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

Moving Files to subdirectory #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion image_density_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def save_density_plot(quantum_matrix, filename="density_plot.png"):
# Save the plot as a PNG file
plt.savefig(filename)
plt.close(fig)
# print(f"Density plot saved as {filename}")
print(f"Density plot saved as {filename}")

# Example usage for multiple qubits
# quantum_matrix = np.array([[2 + 1j, 7, -1j, 0], [4, 3 + 1j, 2, -5j], [0, 1 - 1j, 5, 3], [-4j, 0, 7, 2]])
Expand Down
Loading