Accord.Statistics.Links.LogLinkFunction.LogLinkFunction C# (CSharp) Method

LogLinkFunction() public method

Creates a new Log link function.
public LogLinkFunction ( double beta, double constant ) : System
beta double The beta value. Default is 1.
constant double The constant value. Default is 0.
return System
        public LogLinkFunction(double beta, double constant)
        {
            this.B = beta;
            this.A = constant;
        }

Same methods

LogLinkFunction::LogLinkFunction ( ) : System