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

GetIndicesTest3() private method

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