예제 #1
0
        public void CalcVarianceRatioSlope_test()
        {
            MCP thisMCP = new MCP();

            double This_Var_X = 9.750792f;
            double This_Var_Y = 8.325867f;
            double thisSlope  = thisMCP.CalcVarianceRatioSlope(This_Var_X, This_Var_Y);

            Assert.AreEqual(thisSlope, 0.924049, 0.001, "Wrong slope for variance ratio MCP method");
        }