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

DotWithTransposeTest_Jagged2() private method

private DotWithTransposeTest_Jagged2 ( ) : void
return void
        public void DotWithTransposeTest_Jagged2()
        {
            double[,] a = Matrix.Random(5, 3);
            double[][] b = Jagged.Random(2, 3);

            double[][] expected = Matrix.Dot(a, b.Transpose());
            double[][] actual = Matrix.DotWithTransposed(a, b);

            Assert.IsTrue(expected.IsEqual(actual));
        }
MatrixTest