I would like to know if is it possible to plot a figure with two subplots, in which one is a regular 2D plot and the other one a Bloch sphere.
Subplots with QuTip Bloch sphere
693 Views Asked by Douglas A At
1
There are 1 best solutions below
Related Questions in MATPLOTLIB
- How to use meshgrid with large arrays in Matplotlib?
- how to change matplotlib default figure location on screen
- Matplotlib does not display interactive graph in Ipython
- term frequency over time: how to plot +200 graphs in one plot with Python/pandas/matplotlib?
- how to use Pyplot module of matplotlib to plot two arrays of data
- Matplotlib 3d: surface does not cover a line
- Trying to get matplotlib/numpy to work. Have tried different solutions and out of ideas
- Using matplotlib.pyplot in iPython Notebook
- Matplotlib Table's Font Size
- Python3 embedding Matplotlib Plot inside GTK3 using Glade
- How can I draw a scatter plot with contour density lines in polar coordinates using Matplotlib?
- Pandas plot dataframe as scatter complains of unknown item
- A right way to represent 4 dimension points using colors in a matplotlib scatter
- Matplotlib disappearing plots multiple axis
- Direct chart plotting Pandas DataFrame columns to Xlsxwriter in a loop
Related Questions in QUTIP
- Can't install qutip with anaconda in linux
- Subplots with QuTip Bloch sphere
- Using qutip.mesolve() to calculate the time evolved Hamiltonian with time dependent variable
- QuTiP: Resolving inconsistent Qobj shapes
- Re-implement a QuTip function without the need for the QuTip toolbox
- Getting mcsolve function from qutip to work
- Multi-processing a for loop, target's argument needs to be a list
- how to use qutip in visual studio code?
- Why is this qutip code not working?
- IndexError for scientific Python code
- Install Qutip on Mac os x 10.10 via MacPorts
- Apply a gate to a qubit with qutip?
- Package install error, “ 'module' object has no attribute 'lstrip' ”
- QUTIP output displayed as image in iPython console within Spyder
- Is there a way of specifying which argument QuTiP's parallel_map should iterate over?
Related Questions in SUBFIGURE
- Multiple Tikz-Trees in a subfigure-grouped figure row
- subfigure in latex not in right position
- Adding Subcaptions to a Figure in Quarto
- How to render subfigures with even sizes
- Subplots with QuTip Bloch sphere
- subfig - not plotting figures
- Python: draw multiple figures in separate windows (same data but with different X range)
- How to give an space between figures on subfigure latex ambient?
- Matplotlib Subfigures too Short
- Using a subfigure as textbody fails on tight layout with a lot of text
- Numbering of the subfigures are not centered with the figure in LATEX
- Align Sub Figures in latex (IEEE paper format)
- how to share axis in matplotlib and use only one equal aspect ratio
- If no parent object is specified in the call, what is the default value for findobj()?
- placing figures in a row latex
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, it is possible.
You need to manually create the
figureobject and addaxesto it using matplotlib's OO interface. While making the axes that needs to have the Bloch sphere, you should set the projection to 3D. Finally, just call therendermethod on your Bloch sphere object so that the Bloch sphere gets rendered to the correct subplot