swh:1:snp:16c54c84bc54885e783d4424d714e5cc82f479a1
Raw File
Tip revision: 200f1c11ae22b24a56cf0ca87ab882e91f773299 authored by Roger Koenker on 26 February 2013, 00:00:00 UTC
version 4.95
Tip revision: 200f1c1
sfn.control.Rd
\name{sfn.control}
\alias{sfn.control}
\title{Set Control Parameters for Sparse Fitting }
\description{
Auxiliary function for setting storage dimensions and other parameters rq.fit.sfn[c]
}
\usage{
sfn.control(nsubmax = NULL, tmpmax = NULL, nnzlmax = NULL, cachsz = 64, small = 1e-06, maxiter = 100, warn.mesg = TRUE)
}
\arguments{
  \item{nsubmax}{
upper bound for dimension of lindx
}
  \item{tmpmax}{
upper bound for dimension of tmpvec
}
  \item{nnzlmax}{
upper bound for non-zero entries of L stored in lnz, including diagonal
}

  \item{cachsz}{
size of cache in kbytes on target machine
}
  \item{small}{
convergence tolerance for interior point algorithm
}
  \item{maxiter}{
maximal number of interior point iterations. 
}
  \item{warn.mesg}{
logical flag controlling printing of warnings. 
}
}
\details{
Sparse fitting requires a number of temporary storage arrays whose size depends
on problem specific features in somewhat mysterious ways, parameters controlling
these sizes and some other fitting aspects can be controlled by specifying elements
of this control object.
}
\value{
List with components named as the arguments given above.
}

\author{
Roger Koenker
}

\seealso{
See Also \code{\link{rq.fit.sfn}}
}
\keyword{ utilities }
back to top