bpagan_d.m
来自「计量工具箱」· M 代码 · 共 25 行
M
25 行
% PURPOSE: An example of bpagan(),%% Breush-Pagan heteroscedasticity test%---------------------------------------------------% USAGE: bpagan_d%---------------------------------------------------n = 100; k=5;x = randn(n,k);x(:,1) = ones(n,1);b = ones(k,1);y = x*b + randn(n,1);% print output to command windowbpagan(y,x);tt=1:n; ttp = tt';x = randn(n,k);x(:,1) = ones(n,1);e = randn(n,1).*ttp;y2 = x*b + e;% return output to results structureresult = bpagan(y2,x);result
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?