PowerRegressionResult
public struct PowerRegressionResultResult of a power regression calculation (y = a·x^b).
Fields
Section titled “Fields”
public float ACoefficient a in y = a·x^b.
Returns
System.Single — No return description is available.
public float BExponent b in y = a·x^b.
Returns
System.Single — No return description is available.
RSquared
Section titled “RSquared”public float RSquaredCoefficient of determination (R²), indicating fit quality (0-1).
Returns
System.Single — No return description is available.
Methods
Section titled “Methods”
ToFunction()
Section titled “ToFunction()”public Func<float, float> ToFunction()Creates a function that evaluates the power regression at any x value.
Returns
System.Func{System.Single,System.Single} — No return description is available.