Displaying 1 result from an estimated 1 matches for "fittt".
Did you mean:
ittt
2012 Apr 26
2
How does .Fortran "dqrls" work?
...n=10
> p=2
> y <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
> ny=1L
> tol=1e-07
> coefficients=double(p)
> residuals=double(n)
> effects=double(n)
> rank=integer(1L)
> pivot=1:n
> qraux=double(n)
> work=double(2*n)
>
>
>
> fittt<-.Fortran("dqrls", qr =qr, n = n,
+ p = p, y = y, ny = ny, tol = tol,
coefficients=coefficients,
+ residuals = residuals, effects = effects,
+ rank = rank, pivot = pivot, qraux = qraux,
+ work = work, PACKAGE = "ba...