Pelsser.SquaredGaussianModel.a C# (CSharp) Method

a() public method

This function defines the drift in the Pelsser Markov process. The formula to calculate the A component is A = - alpha * previous State.
public a ( int i, double x, double a ) : void
i int The parameter is not used.
x double The state vector at the previous state.
a double The output of the function.
return void
        public unsafe void a(int i, double* x, double* a)
        {
            a[0] = -this.alpha1Temp * x[0] + this.lamda0.fV() * this.sigma1Temp;
        }