Accord.Tests.Statistics.LogLogLinkFunctionTest.LogLogLinkFunctionConstructorTest2 C# (CSharp) Method

LogLogLinkFunctionConstructorTest2() private method

private LogLogLinkFunctionConstructorTest2 ( ) : void
return void
        public void LogLogLinkFunctionConstructorTest2()
        {
            LogLogLinkFunction target = new LogLogLinkFunction();

            Assert.AreEqual(1, target.B);
            Assert.AreEqual(0, target.A);

            for (int i = 0; i < 11; i++)
            {
                double x = i / 10.0;
                double y = Math.Log(-Math.Log(x));

                Assert.AreEqual(y, target.Function(x), 1e-10);
                Assert.AreEqual(x, target.Inverse(y), 1e-10);
            }
        }