Accord.Tests.Statistics.CircularDescriptiveAnalysisTest.DescriptiveAnalysisConstructor_NoCompute C# (CSharp) Method

DescriptiveAnalysisConstructor_NoCompute() private method

private DescriptiveAnalysisConstructor_NoCompute ( ) : void
return void
        public void DescriptiveAnalysisConstructor_NoCompute()
        {
            double[,] data =
            {
                // hours  minutes        weekedays
                {    7,    52,     (int)DayOfWeek.Monday   },
                {    3,    12,     (int)DayOfWeek.Friday   },
                {   23,    12,     (int)DayOfWeek.Thursday },
                {   21,    42,     (int)DayOfWeek.Saturday },
                {    5,    13,     (int)DayOfWeek.Friday   },
                {   15,    16,     (int)DayOfWeek.Saturday },
                {    6,     8,     (int)DayOfWeek.Sunday   },
                {    8,    22,     (int)DayOfWeek.Friday   },
            };

            double[] lengths = { 24, 60, 7 };

            // Create the analysis
            var analysis = new CircularDescriptiveAnalysis(data, lengths);

            test(analysis);
        }