Smooth Transition#

Description#

A Smooth Transition fit function is defined as:

\[y = A2+\frac{A1-A2}{e^{-\frac{x-M}{G_R}}+1}\]

where

  • \(A1\) - the limit of the function as x tends to zero

  • \(A2\) - the limit of the function as x tends to infinity

  • \(M\) - the sigmoid midpoint

  • \(G_R\) - the growth rate

This models a logistic function.

Examples#

The logistic function has been used in modelling Covid-19 infection trajectory [1]. It has also been used for examining the muonium state of CdS at low temperatures [2].

Properties (fitting parameters)#

Name

Default

Description

A1

0.0

the limit of the function as x tends to zero

A2

0.1

the limit of the function as x tends to infinity

Midpoint

100.0

Sigmoid Midpoint

GrowthRate

1.0

Growth rate

References#

Categories: FitFunctions | Muon\MuonModelling

Source#

C++ header: SmoothTransition.h

C++ source: SmoothTransition.cpp