【单选题】方差未知的单个正态总体均值的假设检验时,原假设是 μ≥300 ,显著性水平是 0.05,检验方法是()
A. [h,p,ci]= t test(x, 300 , 0.95 , -1 )
B. [h,p,ci]= t test(x, 300 , 0.95 , 1 )
C. [h,p,ci]= t test(x, 300 , 1 )
D. [h,p,ci]= t test(x, 300 , -1 )
A. [h,p,ci]= t test(x, 300 , 0.95 , -1 )
B. [h,p,ci]= t test(x, 300 , 0.95 , 1 )
C. [h,p,ci]= t test(x, 300 , 1 )
D. [h,p,ci]= t test(x, 300 , -1 )
[h,p,ci]= t test(x, 300 , -1 )
举一反三
- 进行 假设检验时,用函数 [h,p,ci]=ttest2(x,y, alpha,-1) 进行检验。f2fd9da17627cdb5fd6a9e237d952f22
- 方差未知的单个正态总体均值的假设检验时,原假设是μ≥300,显著性水平是0.05,检验方法是( )
- 假设检验时,函数[h,p,ci]=ttest2(x,y,alpha,0)的输出参数h=1,说明。d45b6387bb99e0e2dc0660822e8e0d8d
- 在Matlab中函数[h,p,ci,zval]=ztest(x,mu,sigma,alpha,tail)输出变量p值小于给定的显著性水平时,拒绝原假设,即h=1。
- 总体方差已知时,总体均值的检验使用U检验,调用格式为[h,p,ci]=ztest(x,m,sigma,alpha,tail)()
内容
- 0
总体方差已知时,总体均值的检验使用U检验,调用格式为[h,p,ci]=ztest(x,m,sigma,alpha,tail)(
- 1
以下程序的输出结果是( )。 struct HAR { int x, y; struct HAR *p;} h[2]; main(){ h[0].x=1; h[0].y=2; h[1].x=3; h[1].y=4; h[0].p=&h[1]; h[1].p=h; printf("%d %d\n",(h[0].p)->x,(h[1].p)->y); }
- 2
关于函数[h,p,ci]=ztest(x, 500,25,0.1,0)中输出参数说法正确的是 ( )
- 3
若X ~ t(10),已知P(|X|>2.2281)=0.05, P(X<1.8125)=0.95。则以下结果正确的是
- 4
有如下程序:#includeusing namespace std;Class Testpublic:Test()Test(const Test&t)cout<<1;);Test fun(Test &u)Test t=u;retum t;int main()Test X,y;x=fun(y);retum 0;运行这个程序的输出结果是()。 A: 无输出 B: 1 C: 11 D: 111