Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Introduce `Lanczos` solver for `spectrum`. ([#476])
- Add Bloch-Redfield master equation solver. ([#473])
- Implement Bloch Sphere rendering and align style with qutip. ([#472], [#480])
- Implement Bloch Sphere rendering and align style with qutip. ([#472], [#480], [#485])

## [v0.31.1]
Release date: 2025-05-16
Expand Down Expand Up @@ -236,3 +236,4 @@ Release date: 2024-11-13
[#473]: https://github.com/qutip/QuantumToolbox.jl/issues/473
[#476]: https://github.com/qutip/QuantumToolbox.jl/issues/476
[#480]: https://github.com/qutip/QuantumToolbox.jl/issues/480
[#485]: https://github.com/qutip/QuantumToolbox.jl/issues/485
8 changes: 4 additions & 4 deletions docs/src/users_guide/plotting_the_bloch_sphere.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ yp = sin.(th)
zp = zeros(20)
pnts = [xp, yp, zp]
add_points!(b, pnts)
fig, ax = render(b)
fig, lscene = render(b)
fig
```

Expand All @@ -132,7 +132,7 @@ xz = zeros(20)
yz = sin.(th)
zz = cos.(th)
add_points!(b, [xz, yz, zz])
fig, ax = render(b)
fig, lscene = render(b)
fig
```

Expand All @@ -148,7 +148,7 @@ yp = sin.(th)
zp = zeros(20)
pnts = [xp, yp, zp]
add_points!(b, pnts, meth=:m) # add `meth=:m` to signify 'multi' colored points
fig, ax = render(b)
fig, lscene = render(b)
fig
```

Expand All @@ -157,7 +157,7 @@ Now, the data points cycle through a variety of predefined colors. Now lets add
```@example Bloch_sphere_rendering
pnts = [xz, yz, zz]
add_points!(b, pnts) # no `meth=:m`
fig, ax = render(b)
fig, lscene = render(b)
fig
```

Expand Down
Loading
Loading