Accord.Tests.Math.OctaveEnvironmentTest.MyAlgorithm.MyAlgorithm C# (CSharp) Method

MyAlgorithm() public method

public MyAlgorithm ( ) : Accord.Math.Environments
return Accord.Math.Environments
            public MyAlgorithm()
            {
                I = eye(2);

                A = new[,]
                {
                    { 0.0, 1.0 },
                    { 4.0, 2.0 },
                    { 7.0, 2.0 },
                };

                B = A * I;

                ret[U, S, V] = svd(B);

                Console.WriteLine(U);
                Console.WriteLine(S);
                Console.WriteLine(V);
            }
        }
OctaveEnvironmentTest.MyAlgorithm