You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/getting_started.md
-23Lines changed: 0 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,29 +2,6 @@
2
2
CurrentModule = QuantumToolbox
3
3
```
4
4
5
-
## [Installation](@id doc:Installation)
6
-
7
-
!!! note "Requirements"
8
-
`QuantumToolbox.jl` requires `Julia 1.10+`.
9
-
10
-
To install `QuantumToolbox.jl`, run the following commands inside Julia's interactive session (also known as REPL):
11
-
```julia
12
-
using Pkg
13
-
Pkg.add("QuantumToolbox")
14
-
```
15
-
Alternatively, this can also be done in Julia's [Pkg REPL](https://julialang.github.io/Pkg.jl/v1/getting-started/) by pressing the key `]` in the REPL to use the package mode, and then type the following command:
16
-
```julia-REPL
17
-
(1.10) pkg> add QuantumToolbox
18
-
```
19
-
More information about `Julia`'s package manager can be found at [`Pkg.jl`](https://julialang.github.io/Pkg.jl/v1/).
20
-
21
-
To load the package and check the version information, use either [`QuantumToolbox.versioninfo()`](@ref) or [`QuantumToolbox.about()`](@ref), namely
22
-
```julia
23
-
using QuantumToolbox
24
-
QuantumToolbox.versioninfo()
25
-
QuantumToolbox.about()
26
-
```
27
-
28
5
## Brief Example
29
6
30
7
We now provide a brief example to demonstrate the similarity between [QuantumToolbox.jl](https://github.com/qutip/QuantumToolbox.jl) and [QuTiP](https://github.com/qutip/qutip).
Copy file name to clipboardExpand all lines: docs/src/index.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,9 @@ hero:
13
13
- theme: brand
14
14
text: Getting Started
15
15
link: /getting_started
16
+
- theme: alt
17
+
text: Users Guide
18
+
link: /users_guide/QuantumObject/QuantumObject
16
19
- theme: alt
17
20
text: View on Github
18
21
link: https://github.com/qutip/QuantumToolbox.jl
@@ -37,6 +40,31 @@ features:
37
40
---
38
41
```
39
42
43
+
# [Introduction](@id doc:Introduction)
44
+
40
45
[QuantumToolbox.jl](https://github.com/qutip/QuantumToolbox.jl) is a cutting-edge Julia package designed for quantum physics simulations, closely emulating the popular Python [QuTiP](https://github.com/qutip/qutip) package. It uniquely combines the simplicity and power of Julia with advanced features like GPU acceleration and distributed computing, making simulation of quantum systems more accessible and efficient. Taking advantage of the Julia language features (like multiple dispatch and metaprogramming), QuantumToolbox.jl is designed to be easily extendable, allowing users to build upon the existing functionalities.
41
46
42
47
*__With this package, moving from Python to Julia for quantum physics simulations has never been easier__*, due to the similar syntax and functionalities.
48
+
49
+
# [Installation](@id doc:Installation)
50
+
51
+
!!! note "Requirements"
52
+
`QuantumToolbox.jl` requires `Julia 1.10+`.
53
+
54
+
To install `QuantumToolbox.jl`, run the following commands inside Julia's interactive session (also known as REPL):
55
+
```julia
56
+
using Pkg
57
+
Pkg.add("QuantumToolbox")
58
+
```
59
+
Alternatively, this can also be done in Julia's [Pkg REPL](https://julialang.github.io/Pkg.jl/v1/getting-started/) by pressing the key `]` in the REPL to use the package mode, and then type the following command:
60
+
```julia-REPL
61
+
(1.10) pkg> add QuantumToolbox
62
+
```
63
+
More information about `Julia`'s package manager can be found at [`Pkg.jl`](https://julialang.github.io/Pkg.jl/v1/).
64
+
65
+
To load the package and check the version information, use either [`QuantumToolbox.versioninfo()`](@ref) or [`QuantumToolbox.about()`](@ref), namely
0 commit comments