We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee833c9 commit 699946eCopy full SHA for 699946e
1 file changed
docs/src/user_interface/truncations.md
@@ -8,7 +8,18 @@ CollapsedDocStrings = true
8
Currently, truncations are supported through the following different methods:
9
10
```@docs; canonical=false
11
+notrunc
12
truncrank
13
trunctol
14
truncabove
15
+truncerror
16
+```
17
+
18
+It is additionally possible to combine truncation strategies by making use of the `&` operator.
19
+For example, truncating to a maximal dimension `10`, and discarding all values below `1e-6` would be achieved by:
20
21
+```julia
22
+maxdim = 10
23
+tol = 1e-6
24
+combined_trunc = truncrank(maxdim) & trunctol(tol)
25
```
0 commit comments