Skip to content

Commit 5f82be9

Browse files
committed
vignette
1 parent 4f4945e commit 5f82be9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

vignettes/polyhedralCubature.Rmd

+31
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,34 @@ p <- f(x, y, z)
100100
integrateOverPolyhedron(p, A, b)
101101
```
102102

103+
The first step in `integrateOverPolyhedron` consists in finding the vertices
104+
of the polyhedron from the set of linear inequalities. It is possible, and
105+
better, to use exact arithmetic for this step, by defining the matrix `A`
106+
and the vector `b` in character mode, each entry being an integer or a
107+
fraction like `"1/3"`. Here we can simply do:
108+
109+
```{r character_mode}
110+
storage.mode(A) <- "character"
111+
storage.mode(b) <- "character"
112+
```
113+
114+
But this is not the way to use if you have a fraction like `1/3` in an entry:
115+
116+
```{r as_character_fraction}
117+
as.character(1/3)
118+
```
119+
120+
Instead, you must directly define `A` and `b` in character mode and enter
121+
`"1/3"` for this entry.
122+
123+
Finally, when $f$ is a polynomial, you can get the exact value of the integral
124+
given as a fraction, by using a **qspray** polynomial instead of a **spray**
125+
polynomial:
126+
127+
```{r integrate_qspray}
128+
library(qspray)
129+
x <- qlone(1); y <- qlone(2); z <- qlone(3)
130+
q <- f(x, y, z)
131+
integrateOverPolyhedron(q, A, b)
132+
```
133+

0 commit comments

Comments
 (0)