@@ -27,6 +27,7 @@ kernelspec:
27
27
## Import pywt
28
28
29
29
<!-- TODO: check if needed anymore -->
30
+
30
31
``` {code-cell}
31
32
from __future__ import print_function
32
33
import pywt
@@ -159,6 +160,7 @@ print(wp['aaaa'].data)
159
160
```
160
161
161
162
<!-- not sure what "Ups" means in the next sentence -->
163
+
162
164
Ups, we have reached the maximum level of decomposition for the ` 'aaaa' ` path,
163
165
which, by the way, was:
164
166
@@ -186,42 +188,34 @@ just like with {class}`Node` and {class}`WaveletPacket` for the 1D case.).
186
188
print(wp['av'].data)
187
189
```
188
190
189
-
190
191
``` {code-cell}
191
192
print(wp['av'].path)
192
193
```
193
194
194
-
195
195
``` {code-cell}
196
196
print(wp['av'].node_name)
197
197
```
198
198
199
-
200
199
``` {code-cell}
201
200
print(wp['av'].parent.path)
202
201
```
203
202
204
-
205
203
``` {code-cell}
206
204
print(wp['av'].parent.data)
207
205
```
208
206
209
-
210
207
``` {code-cell}
211
208
print(wp['av'].level)
212
209
```
213
210
214
-
215
211
``` {code-cell}
216
212
print(wp['av'].maxlevel)
217
213
```
218
214
219
-
220
215
``` {code-cell}
221
216
print(wp['av'].mode)
222
217
```
223
218
224
-
225
219
### Collecting nodes
226
220
227
221
We can get all nodes on the particular level using the
@@ -247,7 +241,6 @@ len(wp.get_level(1))
247
241
print([node.path for node in wp.get_level(1)])
248
242
```
249
243
250
-
251
244
- 2nd level of decomposition:
252
245
253
246
``` {code-cell}
@@ -314,7 +307,7 @@ Note: just remember to not assign to the `node.data parameter directly (TODO).
314
307
315
308
And reconstruct the data from the ` a ` , ` d ` , ` vh ` , ` vv ` , ` vd ` and ` h `
316
309
packets (Note that ` va ` node was not set and the WP tree is "not complete"
317
- \- the ` va ` branch will be treated as * zero-array * ):
310
+ \- the ` va ` branch will be treated as _ zero-array _ ):
318
311
319
312
``` {code-cell}
320
313
print(new_wp.reconstruct(update=False))
@@ -371,7 +364,7 @@ print([n.path for n in new_wp.get_leaf_nodes()])
371
364
```
372
365
373
366
Passing the ` decompose = True ` parameter to the method will force the WP
374
- object to do a full decomposition up to the * maximum level * of decomposition:
367
+ object to do a full decomposition up to the _ maximum level _ of decomposition:
375
368
376
369
``` {code-cell}
377
370
paths = [n.path for n in new_wp.get_leaf_nodes(decompose=True)]
0 commit comments