'Declaration
Public Enum FitType Inherits System.Enum
public enum FitType : System.Enum
'Declaration
Public Enum FitType Inherits System.Enum
public enum FitType : System.Enum
Member | Description |
---|---|
AverageX | Average X-value. |
AverageY | Average Y-value. |
Exponent | Regression fit to the equation Y(x) = C0 * exp( C1*x) |
Fourier | Regression fit to the equation Y(x) = C0 + C1 * cos(x) + C2 * sin(x) + C3 * cos(2*x) + C4 * sin(2*x) + ... |
Linear | Regression fit to the equation Y(x) = C0 + C1*x. |
Logarithmic | Regression fit to the equation Y(x) = C0 * ln(C1*x) |
MaxX | Maximum X-value. |
MaxY | Maximum Y-value. |
MinX | Minimal X-value. |
MinY | Minimal Y-value. |
Polynom | Regression fit to the equation Y(x) = C0 + C1*x + C2*x2 + : + Cn-1*xn-1, where n - number of terms. |
Power | Regression fit to the equation Y(x) = C0 * pow(x, C1) |
System.Object
System.ValueType
System.Enum
C1.Chart.FitType