Accord.Tests.Math.MatrixTest.GetIndicesTest2 C# (CSharp) Méthode

GetIndicesTest2() private méthode

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