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

IndexesTest() private method

private IndexesTest ( ) : void
return void
        public void IndexesTest()
        {
            int from = -1;
            int to = 6;
            int[] expected = { -1, 0, 1, 2, 3, 4, 5 };
            int[] actual = Matrix.Indices(from, to);
            Assert.IsTrue(Matrix.IsEqual(expected, actual));
        }
MatrixTest