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

GetIndicesTest4() private method

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