?? tstatapp.m
字號:
function tstatx = tstatapp(fun, beta, lambda);
% calculated tstats based on hessian and gradients
% inputs: fun, beta,lambda
hh = myhessian(fun, beta, lambda);
dd = myjacobian(fun, beta, lambda);
robust = inv(hh) * (dd * dd') * inv(hh);
stdev = sqrt(diag(robust))';
tstatx = beta ./ stdev;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -