@@ -84,11 +84,11 @@ We will describe its usage.
84
84
We can create a one-dimensional grid by discretizing $x$ axis on $[ 0, 1)$ with $R$ bits as
85
85
86
86
``` @example simple
87
- import QuanticsGrids as QD
87
+ import QuanticsGrids as QG
88
88
xmin = 0.0
89
89
xmax = 1.0
90
90
R = 4
91
- grid = QD .DiscretizedGrid{1}(R, xmin, xmax)
91
+ grid = QG .DiscretizedGrid{1}(R, xmin, xmax)
92
92
```
93
93
94
94
Here, ` DiscretizedGrid ` takes one parameter ` 1 ` , which denotes the dimension of the grid.
@@ -102,35 +102,35 @@ Example:
102
102
quantics = fill(1, R)
103
103
origcoord = 0.0
104
104
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
111
111
112
112
quantics = fill(2, R)
113
113
origcoord = 1-1/2^R
114
114
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
121
121
```
122
122
123
123
Optionally, one can include the end point ` grid_max ` in a grid as
124
124
125
125
``` @example simple
126
- import QuanticsGrids as QD
126
+ import QuanticsGrids as QG
127
127
xmin = 0.0
128
128
xmax = 1.0
129
129
R = 4
130
- grid = QD .DiscretizedGrid{1}(R, xmin, xmax; includeendpoint=true)
130
+ grid = QG .DiscretizedGrid{1}(R, xmin, xmax; includeendpoint=true)
131
131
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
134
134
```
135
135
136
136
## Creating a $d$-dimensional grid
@@ -139,64 +139,64 @@ As an option, you can choose the fused representation (`:fused`) or the interlea
139
139
140
140
### fused representation
141
141
``` @example simple
142
- import QuanticsGrids as QD
142
+ import QuanticsGrids as QG
143
143
xmin, xmax = 0.0, 1.0
144
144
ymin, ymax = 0.0, 1.0
145
145
zmin, zmax = 0.0, 1.0
146
146
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)
148
148
149
149
quantics = fill(1, R)
150
150
origcoord = (0.0, 0.0, 0.0)
151
151
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
158
158
159
159
# Incrementing the least significant fused bits increments the $x$ index.
160
160
quantics = vcat(fill(1, R-1), 2) # [1, 1, ..., 1, 2]
161
161
origcoord = (1/2^R, 0.0, 0.0)
162
162
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
169
169
```
170
170
171
171
### Interleaved representation
172
172
``` @example simple
173
- import QuanticsGrids as QD
173
+ import QuanticsGrids as QG
174
174
xmin, xmax = 0.0, 1.0
175
175
ymin, ymax = 0.0, 1.0
176
176
zmin, zmax = 0.0, 1.0
177
177
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)
179
179
180
180
# (x1, y1, z1, ...., xR, yR, zR)
181
181
quantics = fill(1, 3R) # length is 3R
182
182
origcoord = (0.0, 0.0, 0.0)
183
183
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
190
190
191
191
quantics = vcat(fill(1, 3R-3), [2, 1, 1]) # [1, 1, 1, ..., 2, 1, 1]
192
192
origcoord = (1/2^R, 0.0, 0.0)
193
193
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
200
200
```
201
201
202
202
## Inherent discrete grid
@@ -205,70 +205,70 @@ grididx = (2, 1, 1)
205
205
We provide one example.
206
206
207
207
``` @example simple
208
- import QuanticsGrids as QD
208
+ import QuanticsGrids as QG
209
209
R = 4
210
210
# 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)
212
212
213
213
quantics = fill(1, R)
214
214
origcoord = 0
215
215
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
222
222
223
223
224
224
quantics = fill(2, R)
225
225
origcoord = 2^R-1
226
226
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
233
233
```
234
234
235
235
## Use a base other than ` 2 `
236
236
When creating a grid, we may want to choose a different base other than 2.
237
237
238
238
``` @example simple
239
- import QuanticsGrids as QD
239
+ import QuanticsGrids as QG
240
240
R = 4
241
241
base = 10
242
242
# Grid: [0, 1, ..., 10^R-1]
243
- grid = QD .InherentDiscreteGrid{1}(R, (0,); base=10)
243
+ grid = QG .InherentDiscreteGrid{1}(R, (0,); base=10)
244
244
245
245
quantics = fill(base, R)
246
246
origcoord = base^R-1
247
247
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
254
254
```
255
255
256
256
## Create a function that takes a quantics index as its input
257
257
When using ` QuanticsGrids.jl ` in combination with ` TensorCrossInterpolation.jl ` ,
258
258
one can wrap a function to be interpolated to make a fuction that takes a quantics index:
259
259
260
260
``` @example simple
261
- import QuanticsGrids as QD
261
+ import QuanticsGrids as QG
262
262
import TensorCrossInterpolation as TCI
263
263
264
264
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))
266
266
267
267
f(x, y) = sin(x + y) # Function to be interpolated
268
268
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)
270
270
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
272
272
273
273
tci, ranks, errors = TCI.crossinterpolate2(Float64, fq, localdims, initialpivots; tolerance=1e-8)
274
274
```
0 commit comments