swh:1:snp:16c54c84bc54885e783d4424d714e5cc82f479a1
Raw File
Tip revision: 6964fff892ea20af9633cd7279891c0c431e80bf authored by Roger Koenker on 26 January 2022, 17:32:42 UTC
version 5.87
Tip revision: 6964fff
lm.fit.recursive.Rd
\name{lm.fit.recursive}
\alias{lm.fit.recursive}
\title{ Recursive Least Squares }
\description{
This function fits a linear model by recursive least squares.  It is
a utility routine for the \code{\link{KhmaladzeTest}} function of the quantile regression
package.
}
\usage{
lm.fit.recursive(X, y, int=TRUE)
}
\arguments{
  \item{X}{ Design Matrix }
  \item{y}{ Response Variable}
  \item{int}{ if TRUE then append intercept to X}
}
\value{
return p by n matrix of fitted parameters, where p. The
ith column gives the solution up to "time" i. 
}
\references{ A. Harvey, (1993) Time Series Models, MIT }
\author{ R. Koenker }

\keyword{methods}
back to top