?? title.txt
字號:
>>正態概率紙
0
推薦%《應用數理統計》(葉慈南編)第150頁的圖。用于——正態性檢驗:正態概率紙法
%Author: Ji Lin, 2007
clf
for x=-5:0.1:5;
y=[-3.719,3.719];
plot([x,x],y)
hold on
end
for i=0.0001:0.0001:0.001;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.001:0.001:0.01;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.01:0.01:0.1;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.1:0.01:0.2;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.2:0.02:0.8;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.8:0.01:0.9;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.9:0.01:0.99;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.99:0.001:0.999;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
for i=0.999:0.0001:0.9999;
y1=norminv(i);
x1=[-5,5];
plot(x1,[y1,y1])
hold on
end
title('正態概率紙')
text(4.5,-4,'x\rightarrow')
text(-5.35,-3.719,'0.01')
text(-5.25,-3.0902,'0.1')
text(-5.1,-2.3263,'1')
text(-5.1,-1.6449,'5')
text(-5.2,-1.2816,'10')
text(-5.2,-0.8416,'20')
text(-5.2,-0.5244,'30')
text(-5.2,-0.2533,'40')
text(-5.2,0,'50')
text(-5.2,0.2533,'60')
text(-5.2,0.5244,'70')
text(-5.2,0.8416,'80')
text(-5.2,1.2816,'90')
text(-5.2,1.6449,'95')
text(-5.2,2.3263,'99')
text(-5.35,3.0902,'99.9')
text(-5.45,3.719,'99.99')
text(5.1,3.719,'0.01')
text(5.1,3.0902,'0.1')
text(5.1,2.3263,'1')
text(5.1,1.6449,'5')
text(5.1,1.2816,'10')
text(5.1,0.8416,'20')
text(5.1,0.5244,'30')
text(5.1,0.2533,'40')
text(5.1,0,'50')
text(5.1,-0.2533,'60')
text(5.1,-0.5244,'70')
text(5.1,-0.8416,'80')
text(5.1,-1.2816,'90')
text(5.1,-1.6449,'95')
text(5.1,-2.3263,'99')
text(5.1,-3.0902,'99.9')
text(5.1,-3.719,'99.99')
axis off
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -