Introduction - If you have any usage issues, please Google them yourself
exponentations.cs
Equation model is
Public override double [] buildFormula ()
To get the array of coefficients, the storage sequence is the inverse of the model coefficient, which is the value of the coefficients in the array is b, a.
Public override double forecast(double x)
The prediction function is predicted based on the model.
Public override double computeR2 ()
Calculate the correlation coefficient (determining coefficient). The closer the coefficient is to 1, the more the data satisfies the model.