Accord.Tests.Math.MatrixTest.IntervalTest2 C# (CSharp) Method

IntervalTest2() private method

private IntervalTest2 ( ) : void
return void
        public void IntervalTest2()
        {
            double from = 0;
            double to = 10;
            int steps = 10;
            double[] expected = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
            double[] actual = Matrix.Interval(from, to, steps);

            Assert.IsTrue(Matrix.IsEqual(expected, actual));
        }
MatrixTest