Accord.Tests.Math.VectorTest.GetIndicesTest C# (CSharp) Méthode

GetIndicesTest() private méthode

private GetIndicesTest ( ) : void
Résultat void
        public void GetIndicesTest()
        {
            double[] v = Vector.Ones(5);
            int[] idx = v.GetIndices();
            Assert.IsTrue(idx.IsEqual(new[] { 0, 1, 2, 3, 4 }));
        }