Click or drag to resize

GompertzTransition Class

This function produces a continuous transition with the Gompertz function from a left to a right polynomial, centered at xc, with the width of the transition determined by σ. It is commonly used for modeling tumor growth rates, and mortality and survival analysis.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.FitFunctions.TransitionsGompertzTransition

Namespace: Altaxo.Calc.FitFunctions.Transitions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class GompertzTransition : IFitFunctionWithDerivative, 
	IFitFunction, IImmutable, IEquatable<GompertzTransition>

The GompertzTransition type exposes the following members.

Constructors
 NameDescription
Public methodGompertzTransition Initializes a new instance of the GompertzTransition class, with both polynomial orders set to zero.
Public methodGompertzTransition(Int32, Int32) Initializes a new instance of the GompertzTransition class.
Top
Properties
 NameDescription
Public propertyNumberOfDependentVariables Number of dependent variables (i.e. y, in Altaxo this is commonly called v (like value)).
Public propertyNumberOfIndependentVariables Number of independent variables (i.e. x).
Public propertyNumberOfParameters Number of parameters of this fit function.
Public propertyPolynomialOrderLeft Gets the order of the left polynomial segment.
Public propertyPolynomialOrderRight Gets the polynomial order of the right segment.
Top
Methods
 NameDescription
Public methodStatic memberCreate 
Public methodDefaultParameterValue Returns a default parameter value. You must ensure that the fit function would generate values with those default parameters.
Public methodDefaultVarianceScaling Returns the default variance scaling for the dependent variable i.
Public methodDependentVariableName Returns the ith dependent variable name.
Public methodEvaluate(Double, Double, Double) This evaluates a function value.
Public methodEvaluate(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble, IReadOnlyListBoolean) Evaluates the function values at multiple x-points.
Public methodStatic memberEvaluate(Double, Double, Double, ReadOnlySpanDouble, ReadOnlySpanDouble) This function produces a continuous transition with the Gompertz function, from a left to a right polynomial, centered at xc, with the width of the transition determined by r.
Public methodEvaluateDerivative Evaluates the gradient of the function with respect to the parameters.
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetParameterBoundariesHardLimit Gets the parameter boundaries that are really a hard limit, i.e. outside those limits, the function would probably evaluate NaN values, or makes no sense.
Public methodGetParameterBoundariesSoftLimit Gets the intended parameter boundaries. This are soft limits, boundaries so that the intended purpose of the fit function is fullfilled. Example: in the exponential decay Exp(-a*t) a is intended to be positive. This is a soft limit, and not a hard limit, because a could be also negative, and the fit nevertheless would succeed.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodIndependentVariableName Returns the ith independent variable name.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodParameterName Returns the ith parameter name.
Public methodWithPolynomialOrderLeft Creates a new instance with the provided order for the left polynomial segment.
Public methodWithPolynomialOrderRight Creates a new instance with the provided order for the right polynomial segment.
Top
Events
 NameDescription
Public eventChanged Occurs when the fit function changed, including number or name of parameters, independent variables, dependent variables, or the scaling.
Top
Remarks
This function is defined by at least four parameters: 'xc', 'r', which determine the position and the growth rate of the transition, and a0 and b0, which are the polynomial coefficients of zero order of the left and the right polynomial, respectively. It produces a Gompertz transition from the 'a0' value to the 'b0' value, centered at 'xc' with the width inversely dependent on 'r'.
See Also