Ejemplo n.º 1
0
        /// <summary>
        /// H0:b=0.
        ///  If b=0 is rejected, the linear is conspicuous.
        /// </summary>
        public ISet <IReal> conspicuousDomain(double alpha)
        {
            return


                ((ISet <IReal>)
                 (
                     (new IntervalLeftOpenRightInfinite <IReal>(
                          (Real <double>)(
                              TDistribution.AStudT(alpha, pointsCount - 2)
                              )
                          )

                      +

                      new IntervalLeftInfiniteRightOpen <IReal>(

                          (Real <double>)(
                              TDistribution.AStudT(alpha, pointsCount - 2)
                              )
                          ))
                 )
                );
        }