ols with t distributed errors
[rolst]=olst1(y,x,crit,maxit)
* y = a (n x 1) vector
* x = a (n x k) vector
* crit = a scalar, the convergence criterion (for example 1e-5' ; default = 1e-15)
* maxit = a scalar, the maximum # of iterations (for example 'itmax=10'; default=500)
* rolst = a tlist with
- rolst('meth') = 'olst'
- rolst('y') = y data vector
- rolst('x') = x data matrix
- rolst('nobs') = nobs
- rolst('nvar') = nvars
- rolst('beta') = bhat
- rolst('yhat') = yhat
- rolst('resid') = residuals
- rolst('vcovar') = estimated variance-covariance matrix of beta
- rolst('sige') = estimated variance of the residuals
- rolst('sigu') = estimated sum of squared residuals
- rolst('ser') = standard error of the regression
- rolst('tstat') = t-stats
- rolst('pvalue') = pvalue of the betas
- rolst('dw') = Durbin-Watson Statistic
- rolst('condindex') = multicolinearity cond index
- rolst('conv') = convergence max(abs(bnew-bold))
- rolst('iter') = # of iterations
- rolst('prescte') = boolean indicating if the Rª can be calculated