Add gaussian random variable struct

This commit is contained in:
Milo Priegnitz 2024-06-21 18:11:13 +02:00 committed by dario
parent 2a0b244500
commit 47ca310551

View File

@ -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