blob: b2cbbc45ea5a6da4125623b870d970fad00ec1ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/distrib.R
\name{convolve}
\alias{convolve}
\title{Convolution of two discrete probability distributions}
\usage{
convolve(dist1, dist2)
}
\arguments{
\item{dist1}{Numeric vector of probabilities}
\item{dist2}{Numeric vector of probabilities}
}
\value{
Convolution of the two vectors
}
\description{
This is the probability of the sum of the two random variables
assuming they are independent.
}
|