https://github.com/cran/Hmisc
Raw File
Tip revision: 7b9059f237a2daa7423c8b34bbe06e1659ee90a3 authored by Frank E Harrell Jr on 18 December 2015, 10:45:25 UTC
version 3.17-1
Tip revision: 7b9059f
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