ExponentialRegressionResult
public struct ExponentialRegressionResultResult of an exponential regression calculation (y = a·e^(bx)).
Fields
Section titled “Fields”
public float ACoefficient a in y = a·e^(bx).
Returns
System.Single — No return description is available.
public float BExponent coefficient b in y = a·e^(bx).
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 exponential at any x value.
Returns
System.Func{System.Single,System.Single} — No return description is available.