Accord.Tests.Math.MatrixTest.RowVectorTest C# (CSharp) Method

RowVectorTest() private method

private RowVectorTest ( ) : void
return void
        public void RowVectorTest()
        {
            double[] values = { 1, 2, 3 };
            double[,] expected = { 
                                    { 1, 2, 3 },
                                 };
            double[,] actual;
            actual = Matrix.RowVector(values);
            Assert.IsTrue(Matrix.IsEqual(expected, actual));
        }
MatrixTest