mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-peak.git
synced 2025-06-12 19:05:58 +00:00
20 lines
345 B
C++
20 lines
345 B
C++
#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
|