https://github.com/cran/Hmisc
Raw File
Tip revision: 60e35752daed1915656000bebb27bf583bf1dd70 authored by Frank E Harrell Jr on 08 December 2016, 12:57:59 UTC
version 4.0-1
Tip revision: 60e3575
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