File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 322
322
* [ Addition Rule] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/HEAD/probability/addition_rule.cpp )
323
323
* [ Bayes Theorem] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/HEAD/probability/bayes_theorem.cpp )
324
324
* [ Binomial Dist] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/HEAD/probability/binomial_dist.cpp )
325
+ * [ Exponential Dist] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/HEAD/probability/exponential_dist.cpp )
325
326
* [ Geometric Dist] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/HEAD/probability/geometric_dist.cpp )
326
327
* [ Poisson Dist] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/HEAD/probability/poisson_dist.cpp )
327
328
* [ Windowed Median] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/HEAD/probability/windowed_median.cpp )
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file
3
3
* @brief [Exponential Distribution](https://en.wikipedia.org/wiki/Exponential_distribution)
4
+ * @brief [Exponential Distribution](https://en.wikipedia.org/wiki/Exponential_distribution)
4
5
*
5
6
* The exponential distribution is used to model
6
7
* events occuring between a Poisson process like radioactive decay.
@@ -93,3 +94,4 @@ int main(){
93
94
test (); // Self test implementation
94
95
return 0 ;
95
96
}
97
+
You can’t perform that action at this time.
0 commit comments