prod_ivols computes the intrinsic volumes of a product cone from the intrinsic volumes of its components. That is, it returns the convolution of the vectors of intrinsic volumes given in V.

prod_ivols(V)

Arguments

V

list of vectors of intrinsic volumes

Value

The output of prod_ivols(V) is the vector that is obtained from convolving the components of V.

See also

Package: conivol

Examples

prod_ivols(list( c(0.5,0.5), c(0.1,0.4,0.5) ))
#> [1] 0.05 0.25 0.45 0.25
prod_ivols(list( c(0.5,0.5), c(0.5,0.5), c(0.5, 0.5) ))
#> [1] 0.125 0.375 0.375 0.125