UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
CachedLinearRegressionSums.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "LinearRegression.h"
7
8namespace UE::TimeManagement
9{
32
35
40}
FPlatformTypes::SIZE_T SIZE_T
An unsigned integer the same size as a pointer, the same as UPTRINT.
Definition Platform.h:1150
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition ModuloCircularBuffer.h:18
Definition TimecodeEstimator.cpp:12
void AddSampleAndUpdateSums(const FVector2d &InSample, TModuloCircularBuffer< FVector2d > &InSamples, FLinearRegressionArgs &InCachedArguments)
Definition CachedLinearRegressionSums.cpp:7
Definition CachedLinearRegressionSums.h:17
bool IsEmpty() const
Definition CachedLinearRegressionSums.h:27
FCachedLinearRegressionSums(SIZE_T InNumSamples)
Definition CachedLinearRegressionSums.h:24
FLinearRegressionArgs CachedSums
Definition CachedLinearRegressionSums.h:22
TModuloCircularBuffer< FVector2d > Samples
Definition CachedLinearRegressionSums.h:19
Definition LinearRegression.h:13