SMC_SeriesStats (STRUCT)ΒΆ
TYPE SMC_SeriesStats : STRUCT
Basic statistics of a series of values.
- InOut:
Name
Type
Comment
udiNUDINTNumber of values in the series
fMinLREALMinimum value
fMaxLREALMaximum value
fAvgLREALAverage value
fSDevLREALStandard deviation
aLargestARRAY [0..(SMC_ConstPerf.NUM_SAMPLES - 1)] OF SMC_SeriesSample
The largest samples, sorted by value in descending order. The number of elements stored is
MIN(udiN, ConstPerf.NUM_SAMPLES).aSmallestARRAY [0..(SMC_ConstPerf.NUM_SAMPLES - 1)] OF SMC_SeriesSample
The smallest samples sorted by value in ascending order. The number of elements stored is
MIN(udiN, ConstPerf.NUM_SAMPLES).