From 70a8860fd1b830994e42543cde4776b59d3a80d0 Mon Sep 17 00:00:00 2001 From: Milo Priegnitz Date: Fri, 21 Jun 2024 18:11:13 +0200 Subject: [PATCH] Add gaussian random variable struct --- .../sta/math/probability/randomVariable.hpp | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/sta/math/probability/randomVariable.hpp diff --git a/include/sta/math/probability/randomVariable.hpp b/include/sta/math/probability/randomVariable.hpp new file mode 100644 index 0000000..f880819 --- /dev/null +++ b/include/sta/math/probability/randomVariable.hpp @@ -0,0 +1,20 @@ +#ifndef STA_MATH_PROBABILITY_RANDOMVARIABLE_HPP +#define STA_MATH_PROBABILITY_RANDOMVARIABLE_HPP + +namespace sta +{ +namespace math +{ +namespace probability +{ + struct grv + { + float mean; + float variance; + }; +} // namespace probability +} // namespace math +} // namespace sta + + +#endif //STA_MATH_PROBABILITY_RANDOMVARIABLE_HPP \ No newline at end of file