Skip to content

PowerRegressionResult

StructChartGuruChartGuru
public struct PowerRegressionResult

Result of a power regression calculation (y = a·x^b).

public float A

Coefficient a in y = a·x^b.

Returns

System.Single — No return description is available.

public float B

Exponent b in y = a·x^b.

Returns

System.Single — No return description is available.

public float RSquared

Coefficient of determination (R²), indicating fit quality (0-1).

Returns

System.Single — No return description is available.

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.