Navigation
API > API/Runtime > API/Runtime/TimeManagement
The input arguments required to compute linear regression.
| Name | FLinearRegressionArgs |
| Type | struct |
| Header File | /Engine/Source/Runtime/TimeManagement/Public/Misc/LinearRegression.h |
| Include Path | #include "Misc/LinearRegression.h" |
Syntax
struct FLinearRegressionArgs
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Num | SIZE_T | The number of samples | Misc/LinearRegression.h | |
| SumOfSquaredXes | double | The sum of all squared X values | Misc/LinearRegression.h | |
| SumX | double | The sum of all X | Misc/LinearRegression.h | |
| SumXxY | double | The sum of each X multiplied with its Y. | Misc/LinearRegression.h | |
| SumY | double | The sum of all Y | Misc/LinearRegression.h |