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