📄 olsstructure.m
字号:
function[res] = olsstructure(z)
% OLS intercept and slope estimates, in a structure
% (Helper function of BSTRAPDEM0)
% EXAMPLE : <none> (Oh, the FEX code metrics..)
y = z(:,1);
x = z(:,2:end);
res.b = regress(y,x);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -