Accord.Tests.Math.MatrixTest.GetIndicesTest4 C# (CSharp) 메소드

GetIndicesTest4() 개인적인 메소드

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