FermiDiracTransitionBaseLogarithmicScaledTransition Method |
Provides a logarithmically scaled transition lg(y) = lg(y1) + (lg(y0) - lg(y1)) * Core(...).
The returned value is in linear scale (not logarithm).
Namespace: Altaxo.Calc.FitFunctions.TransitionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic static double LogarithmicScaledTransition(
double p,
double y0,
double y1,
double pc,
double w
)
Parameters
- p Double
- Independent parameter in range [0,1].
- y0 Double
- Value for p=0 (linear scale).
- y1 Double
- Value for p=1 (linear scale).
- pc Double
- Location of the transition (between 0 and 1).
- w Double
- Parameter determining the width of the transition.
Return Value
DoubleThe transitioned value on a logarithmic interpolation between
y0 and
y1.
See Also