/// <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) ) )) ) ); }