Accord.Tests.Statistics.LogNormalDistributionTest.LogNormalDistributionConstructorTest C# (CSharp) Method

LogNormalDistributionConstructorTest() private method

private LogNormalDistributionConstructorTest ( ) : void
return void
        public void LogNormalDistributionConstructorTest()
        {
            double location = 9.2;
            double shape = 4.4;
            LognormalDistribution target = new LognormalDistribution(location, shape);
            Assert.AreEqual(location, target.Location);
            Assert.AreEqual(shape, target.Shape);
        }