Accord.Tests.Math.VectorTest.GetIndicesTest C# (CSharp) 메소드

GetIndicesTest() 개인적인 메소드

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