Pelsser.SquaredGaussianModel.CalculateGamma C# (CSharp) Méthode

CalculateGamma() public méthode

This will simply calculate the gamma factor used in the Pelsser formulation and set the relative temporary variable.
Gamma = sqrt(a^2 + 2 * sigma^2).
public CalculateGamma ( ) : void
Résultat void
        public void CalculateGamma()
        {
            this.gamma = Math.Sqrt(this.alpha1Temp * this.alpha1Temp + 2 * this.sigma1Temp * this.sigma1Temp);
        }