https://github.com/cran/Hmisc
Raw File
Tip revision: dc679076b704e0b0696d26088ed4c7514e1757d2 authored by Charles Dupont on 27 May 2005, 19:42:30 UTC
version 3.0-6
Tip revision: dc67907
solvet.Rd
\name{solvet}
\alias{solvet}
\title{
solve Function with tol argument
}
\description{
A slightly modified version of \code{solve} that allows a tolerance argument
for singularity (\code{tol}) which is passed to \code{qr}.
}
\usage{
solvet(a, b, tol=1e-09)
}
\arguments{
  \item{a}{a square numeric matrix}
  \item{b}{a numeric vector or matrix}
  \item{tol}{tolerance for detecting linear dependencies in columns of
	\code{a}}
  }
\seealso{
\code{\link{solve}}
}
\keyword{array}
\keyword{algebra}

back to top