Navigation
API > API/Runtime > API/Runtime/GeometryCore
TSampleSetStatistics stores and calculates statistics for a scalar sample set, such as the range of values, mean, variance, etc.
| Name | TSampleSetStatistics |
| Type | struct |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Sampling/SampleSetStatistics.h |
| Include Path | #include "Sampling/SampleSetStatistics.h" |
Syntax
template<typename RealType>
struct TSampleSetStatistics
Structs
| Name | Remarks |
|---|---|
| FFixedCountData | Two-pass construction for a sample set with known size. |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Count | int64 | Number of values used to compute statistics | Sampling/SampleSetStatistics.h | |
| Mean | RealType | Mean / Average of values | Sampling/SampleSetStatistics.h | |
| Range | TInterval1< RealType > | Range of values | Sampling/SampleSetStatistics.h | |
| StandardDeviation | RealType | Standard Deviation of values | Sampling/SampleSetStatistics.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AccumulateValue_FixedCount
(
const RealType Value, |
Sampling/SampleSetStatistics.h | ||
FFixedCountData Begin_FixedCount
(
int64 CountIn |
Sampling/SampleSetStatistics.h | ||
void CompleteSecondPass_FixedCount
(
FFixedCountData& DataInOut |
Sampling/SampleSetStatistics.h | ||
void StartSecondPass_FixedCount
(
FFixedCountData& DataInOut |
Sampling/SampleSetStatistics.h |