コード例 #1
0
        public void DeterminantTest()
        {
            Equations EQ = new Equations(new TextBox(), new Label());

            double [][] matrix = new double [3][];
            for (int i = 0; i < 3; i++)
            {
                matrix[i] = new double[] { 1, 2, 3 }
            }
            ;

            Assert.AreEqual(0, EQ.Determinant(matrix));
        }