From f6f37ce80d2a4b48b219ba6243f336019df9c33a Mon Sep 17 00:00:00 2001 From: Vis <59114226+Vismai-Khanderao@users.noreply.github.com> Date: Tue, 28 Jul 2020 21:28:40 +0400 Subject: [PATCH 1/2] Added line before plot_state_city --- tutorials/circuits/2_plotting_data_in_qiskit.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/tutorials/circuits/2_plotting_data_in_qiskit.ipynb b/tutorials/circuits/2_plotting_data_in_qiskit.ipynb index 10e56de3f..5ec8f2bd2 100755 --- a/tutorials/circuits/2_plotting_data_in_qiskit.ipynb +++ b/tutorials/circuits/2_plotting_data_in_qiskit.ipynb @@ -203,6 +203,7 @@ "$$\\rho = \\sum_k p_k |\\psi_k\\rangle\\langle \\psi_k |.$$\n", "\n", "The visualizations generated by the functions are:\n", + "\n", "- `'plot_state_city'`: The standard view for quantum states where the real and imaginary (imag) parts of the state matrix are plotted like a city.\n", "\n", "- `'plot_state_qsphere'`: The Qiskit unique view of a quantum state where the amplitude and phase of the state vector are plotted in a spherical ball. The amplitude is the thickness of the arrow and the phase is the color. For mixed states it will show different `'qsphere'` for each component.\n", From b5d6cb80b4db1c8dcbc72c7e8c54dc41aeb4a6de Mon Sep 17 00:00:00 2001 From: Vis <59114226+Vismai-Khanderao@users.noreply.github.com> Date: Tue, 28 Jul 2020 22:29:13 +0400 Subject: [PATCH 2/2] Matched code block order of functions to list --- tutorials/circuits/2_plotting_data_in_qiskit.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/circuits/2_plotting_data_in_qiskit.ipynb b/tutorials/circuits/2_plotting_data_in_qiskit.ipynb index 5ec8f2bd2..115444e98 100755 --- a/tutorials/circuits/2_plotting_data_in_qiskit.ipynb +++ b/tutorials/circuits/2_plotting_data_in_qiskit.ipynb @@ -188,8 +188,8 @@ "\n", "```\n", "plot_state_city(quantum_state)\n", - "plot_state_paulivec(quantum_state)\n", "plot_state_qsphere(quantum_state)\n", + "plot_state_paulivec(quantum_state)\n", "plot_state_hinton(quantum_state)\n", "plot_bloch_multivector(quantum_state)\n", "```\n",