Skip to content

Commit 23163c7

Browse files
authored
Merge pull request #12 from tensor4all/11-fix-typos-in-doc
Fix typos in doc
2 parents cdc450b + 6ad6715 commit 23163c7

File tree

1 file changed

+72
-72
lines changed

1 file changed

+72
-72
lines changed

docs/src/index.md

+72-72
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ We will describe its usage.
8484
We can create a one-dimensional grid by discretizing $x$ axis on $[0, 1)$ with $R$ bits as
8585

8686
```@example simple
87-
import QuanticsGrids as QD
87+
import QuanticsGrids as QG
8888
xmin = 0.0
8989
xmax = 1.0
9090
R = 4
91-
grid = QD.DiscretizedGrid{1}(R, xmin, xmax)
91+
grid = QG.DiscretizedGrid{1}(R, xmin, xmax)
9292
```
9393

9494
Here, `DiscretizedGrid` takes one parameter `1`, which denotes the dimension of the grid.
@@ -102,35 +102,35 @@ Example:
102102
quantics = fill(1, R)
103103
origcoord = 0.0
104104
grididx = 1
105-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
106-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
107-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
108-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
109-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
110-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
105+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
106+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
107+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
108+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
109+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
110+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
111111
112112
quantics = fill(2, R)
113113
origcoord = 1-1/2^R
114114
grididx = 2^R
115-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
116-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
117-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
118-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
119-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
120-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
115+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
116+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
117+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
118+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
119+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
120+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
121121
```
122122

123123
Optionally, one can include the end point `grid_max` in a grid as
124124

125125
```@example simple
126-
import QuanticsGrids as QD
126+
import QuanticsGrids as QG
127127
xmin = 0.0
128128
xmax = 1.0
129129
R = 4
130-
grid = QD.DiscretizedGrid{1}(R, xmin, xmax; includeendpoint=true)
130+
grid = QG.DiscretizedGrid{1}(R, xmin, xmax; includeendpoint=true)
131131
132-
@assert QD.grididx_to_origcoord(grid, 1) == xmin
133-
@assert QD.grididx_to_origcoord(grid, 2^R) == xmax
132+
@assert QG.grididx_to_origcoord(grid, 1) == xmin
133+
@assert QG.grididx_to_origcoord(grid, 2^R) == xmax
134134
```
135135

136136
## Creating a $d$-dimensional grid
@@ -139,64 +139,64 @@ As an option, you can choose the fused representation (`:fused`) or the interlea
139139

140140
### fused representation
141141
```@example simple
142-
import QuanticsGrids as QD
142+
import QuanticsGrids as QG
143143
xmin, xmax = 0.0, 1.0
144144
ymin, ymax = 0.0, 1.0
145145
zmin, zmax = 0.0, 1.0
146146
R = 4
147-
grid = QD.DiscretizedGrid{3}(R, (xmin,ymin,zmin), (xmax,ymax,zmax); unfoldingscheme=:fused)
147+
grid = QG.DiscretizedGrid{3}(R, (xmin,ymin,zmin), (xmax,ymax,zmax); unfoldingscheme=:fused)
148148
149149
quantics = fill(1, R)
150150
origcoord = (0.0, 0.0, 0.0)
151151
grididx = (1, 1, 1)
152-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
153-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
154-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
155-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
156-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
157-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
152+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
153+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
154+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
155+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
156+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
157+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
158158
159159
# Incrementing the least significant fused bits increments the $x$ index.
160160
quantics = vcat(fill(1, R-1), 2) # [1, 1, ..., 1, 2]
161161
origcoord = (1/2^R, 0.0, 0.0)
162162
grididx = (2, 1, 1)
163-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
164-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
165-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
166-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
167-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
168-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
163+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
164+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
165+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
166+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
167+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
168+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
169169
```
170170

171171
### Interleaved representation
172172
```@example simple
173-
import QuanticsGrids as QD
173+
import QuanticsGrids as QG
174174
xmin, xmax = 0.0, 1.0
175175
ymin, ymax = 0.0, 1.0
176176
zmin, zmax = 0.0, 1.0
177177
R = 4
178-
grid = QD.DiscretizedGrid{3}(R, (xmin,ymin,zmin), (xmax,ymax,zmax); unfoldingscheme=:interleaved)
178+
grid = QG.DiscretizedGrid{3}(R, (xmin,ymin,zmin), (xmax,ymax,zmax); unfoldingscheme=:interleaved)
179179
180180
# (x1, y1, z1, ...., xR, yR, zR)
181181
quantics = fill(1, 3R) # length is 3R
182182
origcoord = (0.0, 0.0, 0.0)
183183
grididx = (1, 1, 1)
184-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
185-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
186-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
187-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
188-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
189-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
184+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
185+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
186+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
187+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
188+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
189+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
190190
191191
quantics = vcat(fill(1, 3R-3), [2, 1, 1]) # [1, 1, 1, ..., 2, 1, 1]
192192
origcoord = (1/2^R, 0.0, 0.0)
193193
grididx = (2, 1, 1)
194-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
195-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
196-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
197-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
198-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
199-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
194+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
195+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
196+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
197+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
198+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
199+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
200200
```
201201

202202
## Inherent discrete grid
@@ -205,70 +205,70 @@ grididx = (2, 1, 1)
205205
We provide one example.
206206

207207
```@example simple
208-
import QuanticsGrids as QD
208+
import QuanticsGrids as QG
209209
R = 4
210210
# Grid: [0, 1, ..., 2^R-1]. The second argument (0,) specifies the origin.
211-
grid = QD.InherentDiscreteGrid{1}(R, 0; step=1)
211+
grid = QG.InherentDiscreteGrid{1}(R, 0; step=1)
212212
213213
quantics = fill(1, R)
214214
origcoord = 0
215215
grididx = 1
216-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
217-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
218-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
219-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
220-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
221-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
216+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
217+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
218+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
219+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
220+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
221+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
222222
223223
224224
quantics = fill(2, R)
225225
origcoord = 2^R-1
226226
grididx = 2^R
227-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
228-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
229-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
230-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
231-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
232-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
227+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
228+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
229+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
230+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
231+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
232+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
233233
```
234234

235235
## Use a base other than `2`
236236
When creating a grid, we may want to choose a different base other than 2.
237237

238238
```@example simple
239-
import QuanticsGrids as QD
239+
import QuanticsGrids as QG
240240
R = 4
241241
base = 10
242242
# Grid: [0, 1, ..., 10^R-1]
243-
grid = QD.InherentDiscreteGrid{1}(R, (0,); base=10)
243+
grid = QG.InherentDiscreteGrid{1}(R, (0,); base=10)
244244
245245
quantics = fill(base, R)
246246
origcoord = base^R-1
247247
grididx = base^R
248-
@assert QD.quantics_to_grididx(grid, quantics) == grididx
249-
@assert QD.quantics_to_origcoord(grid, quantics) == origcoord
250-
@assert QD.grididx_to_quantics(grid, grididx) == quantics
251-
@assert QD.grididx_to_origcoord(grid, grididx) == origcoord
252-
@assert QD.origcoord_to_quantics(grid, origcoord) == quantics
253-
@assert QD.origcoord_to_grididx(grid, origcoord) == grididx
248+
@assert QG.quantics_to_grididx(grid, quantics) == grididx
249+
@assert QG.quantics_to_origcoord(grid, quantics) == origcoord
250+
@assert QG.grididx_to_quantics(grid, grididx) == quantics
251+
@assert QG.grididx_to_origcoord(grid, grididx) == origcoord
252+
@assert QG.origcoord_to_quantics(grid, origcoord) == quantics
253+
@assert QG.origcoord_to_grididx(grid, origcoord) == grididx
254254
```
255255

256256
## Create a function that takes a quantics index as its input
257257
When using `QuanticsGrids.jl` in combination with `TensorCrossInterpolation.jl`,
258258
one can wrap a function to be interpolated to make a fuction that takes a quantics index:
259259

260260
```@example simple
261-
import QuanticsGrids as QD
261+
import QuanticsGrids as QG
262262
import TensorCrossInterpolation as TCI
263263
264264
R = 4
265-
grid = QD.DiscretizedGrid{2}(R, (0.0, 0.0), (1.0, 1.0))
265+
grid = QG.DiscretizedGrid{2}(R, (0.0, 0.0), (1.0, 1.0))
266266
267267
f(x, y) = sin(x + y) # Function to be interpolated
268268
269-
initialpivots = [QD.origcoord_to_quantics(grid, (0.1, 0.1))] # at (x, y) = (0.1, 0.1)
269+
initialpivots = [QG.origcoord_to_quantics(grid, (0.1, 0.1))] # at (x, y) = (0.1, 0.1)
270270
localdims = fill(2^2, R)
271-
fq = QD.quanticsfunction(Float64, grid, f) # fq takes an quantics index as an input
271+
fq = QG.quanticsfunction(Float64, grid, f) # fq takes an quantics index as an input
272272
273273
tci, ranks, errors = TCI.crossinterpolate2(Float64, fq, localdims, initialpivots; tolerance=1e-8)
274274
```

0 commit comments

Comments
 (0)