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

GetIndicesTest2() private method

private GetIndicesTest2 ( ) : void
return void
        public void GetIndicesTest2()
        {
            double[,] v = Matrix.Ones(2, 0);
            int[][] idx = v.GetIndices().ToArray();
            Assert.AreEqual(idx.Length, 0);
        }
MatrixTest