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

GetIndicesTest4() private méthode

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